How to hide/encrypt user name & password

H

Hidayat

Hi experts,
i create login page(html) and ASP program to treat the users. But if user
entry their id then the id will appear in the address bar like the following:

'http://localhost/prc/usrlog1.asp?USRNAM=misnurh&PASCOD=firadus'

I want the address bar not showing the USRNAM & PASCOD content so other user
can not use that id, or can be encrypted.

please suggest the hint or advices
thanks in advance.
Hidayat
 
J

Jens Peter Karlsen[FP-MVP]

Use a Post method instead of the Get method.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: Hidayat [mailto:[email protected]]
Posted At: 06. august 2004 04:23
Posted To: microsoft.public.frontpage.programming
Conversation: How to hide/encrypt user name & password
Subject: How to hide/encrypt user name & password


Hi experts,
i create login page(html) and ASP program to treat the users. But if
user entry their id then the id will appear in the address bar like the
following:

'http://localhost/prc/usrlog1.asp?USRNAM=misnurh&PASCOD=firadus'

I want the address bar not showing the USRNAM & PASCOD content so other
user can not use that id, or can be encrypted.

please suggest the hint or advices
thanks in advance.
Hidayat
 
M

MD Websunlimited

Hi Hidayat,

The form must be using the GET method instead of POST. To change right click in the form | Form Properties |
 
R

Ronx

It could be the illegal characters (!,@,^,$,# etc) in the encoded
parameters.
The userid and password must be encoded, then URLencoded, before being used
as part of a querystring in a URL.

Ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top