Search

You searched for the word(s): Editor.Text Property
Showing page 5 of 61 (605 total posts) < 1 second(s)
  • Re: Editor Functions

    Editor.Text Property This property provides access to the text within the editable area of the CuteEditor control. It can be used to set the text when the control is first displayed and also to read out the text when a form has been submitted. Editor.XHTML Property Retrieves the CuteEditor HTML content in XHTML format. ...
    Posted to Cute Editor for .NET (Forum) by Adam on January 12, 2007
  • Re: How can I make the choice between XHTML 1.0 or HTML 4.01 output

    Please check the following properties:   Editor.Text Property This property provides access to the text within the editable area of the CuteEditor control. It can be used to set the text when the control is first displayed and also to read out the text when a form has been submitted.   Example Code ...
    Posted to Cute Editor for ASP (Forum) by Adam on May 22, 2009
  • Re: Text property does not work

    Dear yeganehaym, Please save the following snippet to test.aspx and then upload it to your host, does it happen in this example?<%@ Page Language=''C#''%> <%@ Register TagPrefix=''CE'' Namespace=''CuteEditor'' Assembly=''CuteEditor'' %> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Strict//EN'' ...
    Posted to Cute Editor for .NET (Forum) by Eric on March 18, 2011
  • Re: Disable the HTML and Preview buttons

    yes.   Editor.ShowHtmlMode Property Specifies whether the Html Mode tab appear.   Example Code       <%            Dim editor            Set editor = New ...
    Posted to Cute Editor for ASP (Forum) by Adam on January 8, 2009
  • Re: Is there away of removing the + /- sign?

    Daniel,   Please check the following properties:   Editor.ShowDecreaseButton Property Specifies whether the Decrease editing window button appear.   Example Code       <%           Dim ...
    Posted to Cute Editor for ASP (Forum) by Adam on July 24, 2006
  • Re: Can I stop cute editor to use span tag where ever it is using

    Vikas,   Please check Editor.UseFontTags Property. Editor.UseFontTags Property Font tags are now deprecated, meaning that they aren't used any more and will cause validation errors. Many legacy pages still contain style information in font tags. By default Cute Editor converts font tags to span tags. <font face=''times'' size=''4'' ...
    Posted to Cute Editor for .NET (Forum) by Adam on April 27, 2006
  • Re: Can i able to reload my text to CuteEditor from database -- Urgent

    Anbaz,   Use the editor.Text property.   Example:          OleDbCommand command = new OleDbCommand(''SELECT Notes FROM Events WHERE EventID = @id'', myConnection); command.Parameters.Add(''id'', e.Item.Cells[0].Text); OleDbDataReader result = command.ExecuteReader(); if ...
    Posted to Cute Editor for .NET (Forum) by Adam on September 9, 2005
  • Re: Problem with setting up a default font for the editor text area

    Thanks.  That did indeed seem to work.   Which brings me to my next question:   Is there a way to programatically set the default font?   If a user prefers a default font (e.g. we have a dropdown with fonts on a ''front page''), can I somehow pass on that font to the editor to use as a default?   Will I have to ...
    Posted to Cute Editor for .NET (Forum) by ralc001 on June 16, 2008
  • Re: Change for absolute URLS

    I tried: <%   Dim editor   Set editor = New CuteEditor   editor.ID = ''conteudo''   editor.Text = objTextos(''conteudo'')   editor.FilesPath = ''editor/CuteEditor_Files''   editor.AutoConfigure = ''default''   editor.EditorBodyStyle = ''font:normal 12px arial;''   ...
    Posted to Cute Editor for ASP (Forum) by Bryan Meller on July 10, 2008
  • Re: default text used in the editor window?????

    Nick,   Please check the Editor.EditorBodyStyle and EditorWysiwygModeCss property.   Editor.EditorWysiwygModeCss Property Specifies the location of the style sheet that will be used by the editable area. Multiple Style Sheets are supported. Example ...
    Posted to Cute Editor for .NET (Forum) by Adam on July 27, 2005
« First ... < Previous 3 4 5 6 7 Next > ... Last »