Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can one use Requst.QueryString, if the method of the form is POST?

Status
Not open for further replies.

kazai

Programmer
Oct 19, 2001
24
US
Can one use Requst.QueryString, if the method of the form is POST?
 
No. You need to use Request.Form BUT I've had situations where the QueryString came in, left over from another page, and if the QueryString and the Form had a variable with the same name, Request("variablename") would get the "old" value from the QueryString.
 
Sometimes, Request.Form does not work. All the values of the form are passed as part of the query string to the next page, but when i do a request.form on the next page, and display it's value, it returns blank.
But instead when i use request.querystring, it works...Can you tell me How??
Thanks,
Radhika.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top