Dec 4, 2000 #1 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="10" name= "<% konto %>"></textarea> This do not work. What does?
I want to name a textarea with the content of a JSP variable. Something like this: <textarea cols="10" name= "<% konto %>"></textarea> This do not work. What does?
Dec 4, 2000 1 #2 palbano Programmer Oct 9, 1998 4,341 US glahn, Very close > <textarea cols="10" name= "<% konto %>"></textarea> just make this minor change <textarea cols="10" name= "<%=konto %>"></textarea> Hope this helps -pete Upvote 0 Downvote
glahn, Very close > <textarea cols="10" name= "<% konto %>"></textarea> just make this minor change <textarea cols="10" name= "<%=konto %>"></textarea> Hope this helps -pete
Dec 5, 2000 Thread starter #3 glahn Programmer Dec 4, 2000 2 DK Thanks a lot - that helped - now it's working Upvote 0 Downvote