Hi,
Please create an page name example.asp with the code below and test it with the new version. Does it work for you?
My email is [email protected]
- <!-- #include file = "cuteeditor_files/include_CuteEditor.asp" -->
- <html>
- <head>
-
- <meta name="robots" content="noindex,nofollow" >
- <%
- dim result
- result = ""
- If request.QueryString("postback") = "true" then
- result = Request.Form("Editor1")
- End if
- %>
- </head>
- <body>
-
- <form name="theForm" action="example.asp?postback=true" method="post">
- <p>type some content in editor and click on the save button</p>
- <%
- Dim editor
- Set editor = New CuteEditor
- editor.ID = "Editor1"
- editor.XHTMLOutput=true
- editor.Draw()
-
-
- %>
-
- <br/><br/>
-
- <textarea name="textbox1" id="Textarea1" style="font-family:Arial;height:250px;width:730px;"><%= Server.HTMLEncode(result) %></textarea>
-
-
- </form>
- </body>
- </html>
Regards,
Ken