There is a common misconception that the following code should work:
| <TEXTAREA VALUE='<%="stuff"%>'></TEXTAREA> |
A TEXTAREA element is a container, like a <TD> or <SPAN>, so you put contents BETWEEN the opening and closing tags, as follows:
<TEXTAREA> <%="stuff"%> </TEXTAREA> |