Can anyone point me to information on how to convert an existing Net 2.0
website to SSL? We are currently developing a site that the customer wants
to use SSL and I am not sure how to convert a non-SSL site. Thanks.
David
David,
To the best of my (limited) knowledge, you don't need to do anything
except get and install your SSL certificate. I just recently switched
mine over. I'm hosted with GoDaddy, and they took care of the
certificate installation. I did add a line in the base class for all
my pages in the Page_Load routine that said something like "if (!
IsSecure) {Response.Redirect("https://<sitename>/page");} to redirect
to the secure server.
There is also something you can add, I think in IIS, to require that a
page or directory be accessed by a secure link if that page requires
it. Since I did the above to guarantee that everything was, I didn't
mess with that, so I can't give you the details.
Hope that helps.