when i submit my form the textarea is not posting any info?
here is my form:
<FORM ACTION="addNews2.asp" METHOD="POST" NAME="form">
<TABLE width = 100%>
<TR class="TData_Info">
<TD width="50%">Add News</TD>
<TD width="50%"><a onclick = "return checkFields()" href = "javascript:form.submit();">Add</a></TD>
</TR>
<TR Class = "TData_Text_Grey">
<%
'Name of the HTML form the textarea is within
strFormName = "form"
'ID tag name of HTML textarea being replaced
strTextAreaName = "mytextarea"
%>
<!-- include the Web Wiz Rich Text Editor -->
<!--#include file="RTE_editor_inc.asp" -->
<TD colspan="2" align="center" Class="TData_Text_Grey"><textarea name="textarea" cols="100" rows="20" ID="mytextarea"></textarea></TD>
</TR>
<TR Class = "TData_Text_Grey">
<TD colspan="2" align="center" Class="TData_Text_Grey"> </TD>
</TR>
</TABLE>
</form>
any ideas as to why its not posting?
thanks
Shem