-
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
-
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.
-
Try this:
<textarea name="hello"><%Response.Write xyz%></textarea>
-
Thanks guys got in working now
cheers
mick