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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to hide data being submitted in the URL box

Status
Not open for further replies.
use the post method instead of the get in the form You cannot mandate productivity, you must provide the tools to let people become their best.
-Steve Jobs
admin@onpntwebdesigns.com
 
I tried using post instead, but then I cant retrieve the query string being sent by the form.

My asp file handles the two form data being passed.

user_name = Request.QueryString("username")
pass_word = Request.QueryString("password")

Any other ideas? Or am I doing something wrong.
 
you do this when using the post method
user_name = Request.Form("username")
You cannot mandate productivity, you must provide the tools to let people become their best.
-Steve Jobs
admin@onpntwebdesigns.com
 
hey use post method instead of reques.querystring use request.form("username") it will solve your problem

rgds
prasad
 
Thanks for all the help, my problem has been SOLVED!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top