Can someone please explain to me how to go about programmingthe code to redirect all request to secure session https:// thanks, acl
You will need to add the SSL adodn and obtain your own SSL certificate. Please contact support if you have questions. Eric DiscountASP.NET http://www.DiscountASP.NET
Sorry Eric, i forgot to mention that i already have my ssl cert installed with DASP. need a few pointers on making everything secure. thanks, acl
I've did this lots. I forget the exact code off the top of my head but its something like: If Request.ServerVariables('SSL') = 'FALSE' Then Response.Redirect('https://' & url) End If You can put it in a user control and then include it on the pages that you want to be secure.
I forgot if you get the 'http://' when you get the original url, you might need to do a left(url,8) or something like that to trim it and then add the https://