how to set output of a jsp page in a textarea?
hii am working on a mail application and i wish to set the output of a jsp page into the textarea.working is similar as we forward a mail the mail get appended in the textarea of the compose page.how to achieve this plz. help... i got stuck at this point ...
[286 byte] By [
BRAVOa] at [2007-11-27 10:04:38]

You can create form using html tag <form> and create a textarea
i.e. <textarea name="txtvalue" value="txt you want to show in text area">.
I am not sure for the exact syntax for creating textarea in html. But it is just a reference.
This may help you in creating html form.
out.writln("<Form> ........./<Form>");
Thanks