Here's the code:
<!-- #include virtual = "wysiwyg/include_CuteEditor.asp" -->
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form name="form1" action="nothing.asp" method="POST">
<%
Dim editor
Set editor = New CuteEditor
editor.EditorWysiwygModeCss = "page.css"
editor.ID = "Special_message"
editor.ThemeType="officexp"
editor.Text = "The dish ran away <a href=""page.htm"">with the spoon</a>"
editor.FilesPath = "../wysiwyg"
editor.ShowBottomBar = true
editor.Template= "FontName,FormatBlock,FontSize,Bold,Italic,Underline,ForeColor,BackColor,InsertImage,InsertLink"
editor.Width = 600
editor.ImageGalleryPath = ""
editor.Draw()
%>
</form>
</body>
</html>
Here's the style sheet:
<style type="text/css">
body {
background : Aqua;
font-family : Arial, Helvetica, sans-serif;
}
</style>
The css file is in the same folder with the editor form.
Two possible issues: The page is on port 8181 and is password protected by basic authentication.
Do you have any suggestions?
Thanks!
JBC