-
Hi,
How do I get data from a form in a previous page that uses the POST method? I've tried changing the method from GET to POST in a fully functioning ASP page and things don't work after that.
I am using request.querystring("varName") on the page that suppose to receive the data. What am I doing wrong?
Thanks in advance.
-
Hi,
try using Request.form(controlname) to get the data from the form.
ie, assuming u have a textbox named txtName try using
Request.Form("txtName")
hope this helps
[Edited by rammy on 10-31-2000 at 12:42 AM]