Link to home
Start Free TrialLog in
Avatar of mscproj
mscproj

asked on

textarea format on asp

I have one page with a form, and a textarea area inside that form.

<form action="formResult.asp" method="post" name="regform">
.
.
<textarea name="test" wrap="soft"></textarea>
.
.
</form>

In formResult.asp file, I use the code Request.Form("test") to get the strings on the textarea. But, all the space and line breaks are missed!!!!!! How can I display the text withe the format according to what the user typed on the previous form. Thanks!
ASKER CERTIFIED SOLUTION
Avatar of knightEknight
knightEknight
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mscproj
mscproj

ASKER

I get it now. Thanks!!