I am able to insert the content of the Editor into a database and view the content on a web page, but the database field ("text" fieldtype) content does not appear in the Editor when I read from the database. I currently have this in place to retrieve the data from the database and populate the Editor. How can I get the content to display within the editor?
I have looked at
http://cutesoft.net/asp/todatabase.asp but don't see an answer there.
Thanks
<% Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.Text = mfmNews
editor.ImageGalleryPath = "/editorUploads"
editor.MaxImageSize = 50
editor.AutoConfigure = "MFM_News"
editor.UseHTMLEntities = true
editor.Width = 530
editor.Height = 550
editor.Draw()
%>