MavrickStl
Programmer
I am trying to take user input via textarea as follows:
<Form Action = "addmidmonth.asp?Userid=<%=Session("UserId"%>" Name=frmNewBrag Method =POST >
<div align="left">
<textarea cols="40" rows="5" name="desc1">
</textarea>
</div>
In my addmidmonth.asp script I trying to store the user input via textarea into a variable:
varDesc1 = .textarea("desc1"
and pass this variable to an oracle procedure to insert the record in the table. But I am getting this error:
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'textarea'
How can store textarea input in a variable ???
<Form Action = "addmidmonth.asp?Userid=<%=Session("UserId"%>" Name=frmNewBrag Method =POST >
<div align="left">
<textarea cols="40" rows="5" name="desc1">
</textarea>
</div>
In my addmidmonth.asp script I trying to store the user input via textarea into a variable:
varDesc1 = .textarea("desc1"
and pass this variable to an oracle procedure to insert the record in the table. But I am getting this error:
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'textarea'
How can store textarea input in a variable ???