Verify SSL access
-
I want to make sure that all access to the Web Application is done thru the Secure URL. Is there a way to check this at the login page. I see that IIS has some settings to require secure communication but this is hosted and we have no control over this. Or do we need to ask the host to set this property in IIS. Thanks
-
I want to make sure that all access to the Web Application is done thru the Secure URL. Is there a way to check this at the login page. I see that IIS has some settings to require secure communication but this is hosted and we have no control over this. Or do we need to ask the host to set this property in IIS. Thanks
What I've done in the past is implement a redirection - check if the browser is requesting something through HTTPS, and if not, redirect to https://server/theSamePage.aspx. There are a number of approaches to this type of thing. Here are a few examples: Switching Between HTTP and HTTPS Automatically[^] Seamlessly moving requests in and out of SSL[^] Requiring HTTPS for Certain ASP.NET Pages[^]