Re: How can I make the choice between XHTML 1.0 or HTML 4.01 output

  •  05-22-2009, 12:15 PM

    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

          <%
               Dim editor
               Set editor = New CuteEditor
               editor.ID = "Editor1"
               'This property provides access to the text within the editable area of the CuteEditor control
               editor.Text = "Hello World"
               editor.Draw()
          %>

     
    ditor.XHTMLOutput Property

    Retrieves the CuteEditor HTML content in XHTML format.

     


    Example Code

          <%
               Dim editor
               Set editor = New CuteEditor
               editor.ID = "Editor1"
               'Retrieves the CuteEditor HTML content in XHTML format.
               editor.XHTMLOutput = true
               editor.Text = "Hello World"
               editor.Draw()
          %>


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread