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

Username and Password showing in the address bar

Status
Not open for further replies.

kprog

Programmer
Jul 21, 2003
13
0
0
CA
Hello,

I have a page where the user enters their username and password. The problem is when they click on the submit button, the next page displays, but you can see their user name and password in the address bar at the top and the status bar at the bottom.

Does anyone know how to hide these variables?

Thanks!
 
<form method=&quot;GETPOST&quot;>

and then

Request.Form
not
Request.QueryString

1H 1K 10 3D 3F 3E 3K 38 3J 10 1T 10 3G 3L 3I 35 10 35 3O 33 35 3C 3C 35 3E 33 35

onpnt2.gif
 
alright that kind of looks like it makes sense. to me anyhow [wink]

either you have no method in the form tag or a GET method. This submits through the URL. The POST which you want submits via HTTP. so when you cahnge over to POST you wil not see the querystrings

however then the request much be changed to the Form

1H 1K 10 3D 3F 3E 3K 38 3J 10 1T 10 3G 3L 3I 35 10 35 3O 33 35 3C 3C 35 3E 33 35

onpnt2.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top