Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB Script Text area question?

Status
Not open for further replies.

MavrickStl

Programmer
Feb 20, 2001
71
US
I am trying to take user input via textarea as follows:

<Form Action = &quot;addmidmonth.asp?Userid=<%=Session(&quot;UserId&quot;)%>&quot; Name=frmNewBrag Method =POST >
<div align=&quot;left&quot;>
<textarea cols=&quot;40&quot; rows=&quot;5&quot; name=&quot;desc1&quot;>
</textarea>
</div>

In my addmidmonth.asp script I trying to store the user input via textarea into a variable:

varDesc1 = .textarea(&quot;desc1&quot;)

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 ???





 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top