Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

How do I use SSL in my asp.net app ?

Hi , I'm a bit confused on as to how I can use SSL for a particular form in my web app , can someone explain what class I need in order to create a connection from the client to server that uses SSL ?
Thanks
[223 byte] By [Matrix.net] at [2007-11-11 10:14:32]
# 1 Re: How do I use SSL in my asp.net app ?
See if the following helps:

http://www.verisign.com/ssl/ssl-information-center/how-ssl-security-works/index.html
pclement at 2007-11-11 23:12:05 >
# 2 Re: How do I use SSL in my asp.net app ?
SSL- secured socket layer uses https protocol to display the page.
This is mainly used when when we want a secured data transmission from client to server(browser to webserver).To transmit password and credit card details most of the site will use SSl.

You can use ssl in ur login page , so the password will be transmitted securedly.

To use SSL first u should have a certificate(search for this)

To use in ur site is very easy.
while redirecting to Loign page give like this
Response.Redirect("https://www.mysite.com/Login.aspx")

The Login page will open with https protocol.

:WAVE:
pms1_2 at 2007-11-11 23:13:05 >
# 3 Re: How do I use SSL in my asp.net app ?
Thanks people, I'm 100% clear now on this
Matrix.net at 2007-11-11 23:14:09 >