PDA

Click to See Complete Forum and Search --> : Querystring AGAIN......


turfbult
Mar 8th, 2001, 04:03 AM
Hello,

When passing variables from one page to the next using querystring eg....
"MembersCenter.asp?uid=123&pwd=mypassword" - the variables now show in the browsers titlebar.
Is there a way to get it NOT to show there!!??

I know this might not be the best way to send info like uid/pwd, but in the application I'm using
it, it really does not have to be a major "secret". I would however like it NOT to display.

Thanks all,
T

Nightmare
Mar 8th, 2001, 04:11 AM
Try to put your asp pages in a layer, or use a code to make the URL combobox invisible

turfbult
Mar 8th, 2001, 04:26 AM
Thanks Nightmare,

I dont quite understand what you mean!(..... or use a code to make the URL combobox invisible.....).

Could you perhaps give me some example code.

T

Nightmare
Mar 8th, 2001, 04:52 AM
yes, but i have to look for a example

icq : 59781659

BG
Jun 22nd, 2001, 02:13 PM
Encrypt the username and password. There is code on this website for simple encryption.

monte96
Jun 23rd, 2001, 12:05 AM
Querystrings display in the title bar. If you are passing data to a page that is sensitive, don't use querystrings.

Radames
Jun 27th, 2001, 10:10 PM
I bet you are using get as the form method. Try using POST.