Hi Adam
I just copied it from your demo site and adjusted the paths (of course this version does not save anything on submit) - here is the whole file:
<!-- #include file = "CuteEditor_Files/include_CuteEditor.asp" -->
<html>
<head>
<title>EditAll</title>
<meta name="Expires" content="0">
<link rel="stylesheet" href="asp.css" type="text/css" />
</head>
<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>
<form name="form1" action="EnableAll.asp?postback=true" method="post" ID="Form1">
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.Text = "..."
editor.FilesPath = "CuteEditor_Files"
editor.ImageGalleryPath = "../Uploads"
editor.MaxImageSize = 50
editor.AutoConfigure = "EnableAll"
editor.Draw()
%>
<input type="submit" value="Submit" ID="Submit1" NAME="Submit1"><br>
</form>
</body>
</html>
Thank you for your help.
Regards
Olivier