PDA

Click to See Complete Forum and Search --> : Getting data from the POST method


cedx
Oct 30th, 2000, 09:15 PM
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.

rammy
Oct 30th, 2000, 11:40 PM
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]