|
-
Feb 20th, 2001, 02:58 AM
#1
Thread Starter
Junior Member
gidday can anyone help i am having trouble giving memory to a textarea field of my form
the following works fine with text fields:
value="<%=xyz%>"
but when tried for the textarea nothing appears
have tried other syntaxes but nothing works
thanks in advance
mick
-
Feb 20th, 2001, 06:27 AM
#2
New Member
mornin.
are you doin this:
<textarea name="hello" value=<%= xyz %>"></textarea>
?
If so, don't
do this:
<textarea name="hello"><%= xyz%></textarea>
dont put the value tag in, and have the <%= xyz %> in the bit between the open textarea tag and the close tag.
Hope that helps.
-
Feb 21st, 2001, 07:38 AM
#3
Addicted Member
Try this:
<textarea name="hello"><%Response.Write xyz%></textarea>
-
Feb 21st, 2001, 11:40 PM
#4
Thread Starter
Junior Member
Thanks guys got in working now
cheers
mick
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|