Dear demmett,
Please refer to the following snippet:
<!-- #include file = "cuteeditor_files/include_CuteEditor.asp" -->
<html>
<head>
</head>
<body>
<form name="theForm" method="post">
<h1>Multiple Editors Example</h1>
<br>
<%
dim content
content = "<P><FONT color=#cd0000><b>This paragraph will be edited by the first instance...</b> </FONT></P>"
Dim editor
Set editor = New CuteEditor 'Create a new editor class object
'Set the ID of this editor class
editor.ID = "Editor1"
'The toolbar items needed to be disabled going to this string. Example DisableItemList="Bold, New, Delete"
editor.DisableItemList = "Save"
editor.CodeSnippetDropDownMenuNames = "Code1, Code2, Code3"
editor.CodeSnippetDropDownMenuList = "Code1, Code2, Code3"
editor.Draw()
Response.Write "<br><br>"
Dim editor2
Set editor2 = New CuteEditor 'Create a new editor class object
editor2.ID = "Editor2" 'Set the ID of this editor class
editor2.Height = 350
editor2.CodeSnippetDropDownMenuNames = "Code1"
editor2.CodeSnippetDropDownMenuList = "Code1"
editor2.Draw()
Response.Write "<br><br>"
Dim editor3
Set editor3 = New CuteEditor 'Create a new editor class object
editor3.ID = "Editor3" 'Set the ID of this editor class
editor3.Height = 350
editor3.CodeSnippetDropDownMenuNames = "Code3,CuteSoft"
editor3.CodeSnippetDropDownMenuList = "Code3,<font color=red>CuteSoft</font>"
editor3.Draw()
' Retrieve the data from editor: Request.Form("Editor1")
%>
<br>
<input type="submit" value="Update" class="button65" NAME="Submit1">
</form>
</body>
</html>
Thanks for asking