CuteEditor for ASP 6.6 Class Library

Editor.EditCompleteDocument Property

Specify whether a complete HTML document is being edited.


Example Code

      <%
           Dim editor
           Set editor = New CuteEditor
           editor.ID = "Editor1"
           'SSpecify whether a complete HTML document is being edited.
           editor.EditCompleteDocument = true
           editor.Text = "Hello World"
           editor.Draw()
      %>

Remarks

If false, the editor will only process content inside the page body i.e. all content inside of the <body>...</body> tags of a page. If true, the editor will process content outside the page body and preserve header tags (e.g. <head>...</head>, <title>...</title>, etc.).

See Also

Editor Class | CuteEditor Namespace