CuteEditor for ASP 6.6 Class Library

Editor Class

CuteEditor for ASP is a powerful, professional online web based WYSIWYG HTML editor that enables ASP developers to embed a word processor, similar to Microsoft Word into a web page. This Web-based WYSIWYG Content Editing tool empowers business users with an intuitive, easy-to-use interface for creating and publishing web content. This documentation should provide everything you need to customize the CuteEditor control for your particular application.

For a list of all members of this type, see Editor Members.

 

Remarks

Cute Editor for ASP supports all Internet Explorer versions from 5.5 up on Windows, and Netscape 7.1, Mozilla 1.4, Safari (1.3+) or any other browser with an equivalent gecko layout engine on any platform where these browsers are available. This includes Macintosh and Linux.

Keep in mind that you don't need a supported browser to see HTML pages generated using Cute Editor for ASP, you just need a supported browser to edit with Cute Editor for ASP. If you attempt to use Cute Editor for ASP using a browser that is not supported Cute Editor for ASP will display a regular textarea. You will still be able to edit the document, but only in HTML code view.

Example

default setting:

<!-- #include file = "CuteEditor_Files/include_CuteEditor.asp" -->
<html> 
    <body>
     <form name="theForm" action="/asp/Get_HtmlContent.asp" method="post">
      <%
           Dim editor
           Set editor = New CuteEditor
           editor.ID = "Editor1"
           editor.Text = "Hello World"
           editor.Draw()
      %>
     </form>
 </body>
</html>

Programmatically change the layout of the toolbars:

<!-- #include file = "CuteEditor_Files/include_CuteEditor.asp" -->
<html> 
    <body>
     <form name="theForm" action="/asp/Get_HtmlContent.asp" method="post">
      <%
           Dim editor
           Set editor = New CuteEditor
           editor.TemplateItemList="Bold,Italic,Underline"
           editor.ID = "Editor1"
           editor.Text = "Hello World"
           editor.Draw()
      %>
     </form>
 </body>
</html>

 

See Also

Editor Members | CuteEditor Namespace