CuteEditor for ASP 6.6 Class Library

Editor.GetString Method

This function returns what the Draw function used to write to the response buffer as a string.


Example Code

      <%
           Dim editor, content
           Set editor = New CuteEditor
           editor.ID = "Editor1"
           editor.Text = "Hello World"

           'returns what the Draw function used to write to the response buffer as a string.
           content = editor.GetString()
           Response.Write content
      %>

See Also

Editor Class | CuteEditor Namespace