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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JSP-variable in HTML-form 1

Status
Not open for further replies.

glahn

Programmer
Dec 4, 2000
2
DK
I want to name a textarea with the content of a JSP variable. Something like this:

<textarea cols=&quot;10&quot; name= &quot;<% konto %>&quot;></textarea>

This do not work. What does?
 
glahn,

Very close

> <textarea cols=&quot;10&quot; name= &quot;<% konto %>&quot;></textarea>

just make this minor change
<textarea cols=&quot;10&quot; name= &quot;<%=konto %>&quot;></textarea>


Hope this helps
-pete
 
Thanks a lot - that helped - now it's working
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top