How to encrypt login page

A

ad

I use vs2005 to develop web application.
How can I encrypt the login innformation (password and ID) when a user login
with login page?
 
T

Tod Birdsall, MCSD for .NET

I use vs2005 to develop web application.
How can I encrypt the login innformation (password and ID) when a user login
with login page?

Hi ad,

To encrypt the login information as it is being passed from the user's
browser to the web server, you will need to use SSL. Normally this
entails purchasing an SSL certificate from a provider like Verisign.
If your site is hosted by a third party, talk to your hosting provider
about how to set this up.
 
A

ad

But if I install my web application in the IIS of windows xp, there is no
SSL.
Can we encyrpt on the applicaiton level?
 
E

Eliyahu Goldin

If you google for SSL IIS XP, you will find plenty of references.

You can encrypt on application level. You can take user input on client
side, encode it in javascript as you wish, pass it to the server in hidden
input fields and decode on server side. But

1) You will need to convince your users that your encryption is as good as
SSL and
2) SSL should not be that difficult to get and setup, it simply doesn't pay
to reinvent the wheel.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


ad said:
But if I install my web application in the IIS of windows xp, there is no
SSL.
Can we encyrpt on the applicaiton level?
 

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