I installed the RTE V3.0 Beta 1 version in my site, that is up and running already.
Then modified an existing page that was allright before. The page has a form with a texarea,
so I put the few lines of code in the form, as states in the install docs.txt.
When running on localhost, the page is getting loaded and displaying my form
and also the RTE icons above the textarea.
At the same time, an error message is displayed:
run time error: access denied , line 60
Then, Microsoft Visual Studio Debugger points to:
file: RTE_javascript.asp
function intiframe()
source error line:
editor.attachEvent('onkeypress', editorEvents);
I can put some text in the the texarea, emoticons as well.
next:
submitting my form.
results in:
run time error: access denied, line 74
The debugger point again to the last of these three lines:
//get textrea value from RTE and run any original onSubmit events
textArea.form.onsubmit = function(){
textArea.value = editor.body.innerHTML;
and for the last time:
run time error, access denied, line 91:
//unload event so we don't loose the data
window.onunload = function(){
textArea.value = editor.body.innerHTML;
(needless to say that my typings in the textarea are not saved in the database; the rest of the form
got saved well !!)
I use IIS V5.1, IE v6.0, XP-PRO
Any suggestions?????