This is cool uk192, we offer the same services and same goals with our CMS/file manager suite !
The only diffrence is that my system does not edit real HTML FILES, the web pages are 100% DATA DRIVEN, but only by adding the editor.SaveFile function will do what you ask for...
Ok uk192... now it is your turn... To give you the possibilitie to edit your HTML PAGES via your platform with CE, do something like this...
You will have to create a new page to replace your /webeditor/file_edit.asp and your code will look like this;
<!-- #include file = "editeur5_2/include_CuteEditor.asp" -->
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "HTML_CONTENT"
editor.Text = HTML_CONTENT
editor.FilesPath = "editeur5_2"
editor.FullPageOnLoad = true
editor.LoadHTML("/" & myFolderName & "/" & request("file")) ' load existing html file from path
editor.SaveFile("/" & myFolderName & "/" & request("file")) ' save it or create a new file named...
editor.Draw()
%>
With the editor.SaveFile, it will overwrite or create (if does not exist) the file in the folder, this built-in CE function can gives fowerfull options in your web apps!! Note that the folder must have a "read/write" permission.
Et voilà uk192!
Note: I really loved your Form Manager module, hope you will leave the demo username and password active, I love analyse project like that, it is a good way to give us new horizons and tips and I hope webloft will also help you!
Enjoy,
//JF//