Here is a simple test code - even this does not work - the toolbars are separated from the textarea. What am I doing wrong?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%
response.expires=-1
'Declare the ASP variables used
Dim strFormName
Dim strTextAreaName
'ID tag name of the HTML form the textarea is within
strFormName = "input"
'ID tag name of HTML textarea being replaced
strTextAreaName = "text"
%>
<!--#include file="RTE_editor_inc.asp" -->
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>Site Manager</TITLE>
</HEAD>
<BODY onLoad="initialiseWebWizRTE();">
<BR><BR><BR><BR>
<FORM ACTION="test.asp" METHOD="post" NAME="input" ID="input">
<TEXTAREA COLS="80" ROWS="10" NAME="text" ID="text"><%=request.form("text")%></TEXTAREA>
<INPUT TYPE="submit" NAME="submit" ID="submit" VALUe="submit">
</FORM>
</BODY>
</HTML>