-boRg- wrote:
I can see why you wouldn't be able to. |
Hi,
I'm trying to use RTE within a Sub proc. but get the vbscript error described above. Here is my code:
<%
call mySub
' *** Add or Edit a newsletter item ***
Sub mySub()
%>
<script for="window" event="onload">
initialiseWebWizRTE();
</script>
<form id="myForm">
<%
Dim strFormName
Dim strTextAreaName
'Name of the HTML form the textarea is within
strFormName = "myForm"
'ID tag name of HTML textarea being replaced
strTextAreaName = "myTextarea"
%>
<!-- include the Web Wiz Rich Text Editor -->
<!--#include file="RTE_editor_inc.asp" -->
<textarea style="text-align:right;direction:rtl;" id="myTextarea" cols="80" rows="20">שלום דורון</textarea>
</form>
<%
End Sub
%>
Any suggestions?
Thanks.