When you click button
, it will paste pure text.
the following is its code:
<%
dim content
content = "Type here"
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.Text = content
editor.EditorBodyStyle = "font:normal 12px arial;"
editor.EditorWysiwygModeCss = "asp.css"
editor.EditorOnPaste = "PastePureText"
editor.Draw()
' Request.Form(ID) access from other page
%>
Regards,
Eric