Hi
I have a simple ASP page with this form in it :
<form method="post" name="process" action=".\Process.asp" target=_blank>
<textarea name="Box1" cols=80 rows=10></textarea>
<INPUT type="submit" name="Send" value="Send">
</form>
In process.asp, I try to retrieve the value from the textarea with Request.Form("Box1"
, but it's always empty... Is there an obvious error here?
Thanks
I have a simple ASP page with this form in it :
<form method="post" name="process" action=".\Process.asp" target=_blank>
<textarea name="Box1" cols=80 rows=10></textarea>
<INPUT type="submit" name="Send" value="Send">
</form>
In process.asp, I try to retrieve the value from the textarea with Request.Form("Box1"
Thanks