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

Last post 05-22-2009, 12:15 PM by Adam. 2 replies.
Sort Posts: Previous Next
  •  07-07-2005, 4:52 AM 8448

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

    Its stated that:
    "Output HTML or well-formed XHTML to your choice
    Cute Editor supports output well-formed XHTML. Your choice of XHTML 1.0 or HTML 4.01 output. "

    How can I make this choice??
  •  05-22-2009, 12:06 PM 52429 in reply to 8448

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

    Good question. Did anyone ever reply?
  •  05-22-2009, 12:15 PM 52430 in reply to 52429

    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 as RSS news feed in XML