CuteEditor for ASP 6.6 Class Library

Editor.UseHTMLEntities Property

By default Cute Editor maps most special characters to the equivalent HTML entity automatically. You can turn it off by setting this property to "false".


Example Code

      <%
           Dim editor
           Set editor = New CuteEditor
           editor.ID = "Editor1"
           'By default Cute Editor maps most special characters to the equivalent HTML entity automatically. You can turn it off by setting this property to "false".
           editor.UseHTMLEntities = true
           editor.Text = "Hello World"
           editor.Draw()
      %>

See Also

Editor Class | CuteEditor Namespace