I recently purchased the “cute_editor”.
I am experiencing some problems regarding displaying content from the database in the editor.
I am able to display my content in an Iframe using :
<iframe src="<%=srcURL%>" id="message" width="100%" height="402" marginwidth="1" marginheight="0" name="message" border="1" frameborder="1" ></iframe>
Here is the code for the cute_editor src:
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.Text = srcURL
editor.FilesPath = "CuteEditor_Files"
editor.EditorBodyStyle = "font:normal 12px arial;"
editor.EditorWysiwygModeCss = "asp.css"
editor.Draw()
' Request.Form(ID) access from other page
%>
What should I change in order to be able to display my database content in the cute_editor’s window?
One more question.
My website uses a language that is being written from right to left.
Where should I change the code so when the page is loading, the default writing side will be right to left.
Thanks in advance.
Best regards,
--
O.B