Please use the following code:
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.EditorBodyStyle="font-family: Verdana;font-size=25;"
If request.QueryString("postback") <> "true" then
editor.Draw()
else
editor.SaveFile("document.html")
editor.Draw()
End if
' Request.Form(ID) access from other page
%>
Regards,
Eric