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.





Reply With Quote