I am using Dreamweaver Mx and have a data application and am trying to make my Edit News textbox an RTE Editor. I have followed the instruction very carefully and it will not work.
My Include
<!--#include file="../RTE/RTE_configuration/browser_page_encoding_inc.asp" -->
My Body
<body OnLoad="initialiseWebWizRTE();" bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
My Form
<form method="POST" name="form4" action=<%=MM_editAction%>>
My Textarea
<%
Dim strFormName
Dim strTextAreaName
'Edit the intilised variables below to put in the name of your textrea's ID and the name
'of the form the textarea is within
'Name of the HTML form the textarea is within
strFormName = "form4"
'ID tag name of HTML textarea being replaced
strTextAreaName = "NewsDescription"
%>
<!--#include File = "../RTE/RTE_editor_inc.asp" -->
<textarea class = "fields" name="NEWS_DESC" id="NewsDescription" cols="65" rows="10"> <%=(rsAdminNewsEdit.Fields.Item("NEWS_DESC").Value)%> </textarea>
Thanks