vote up 0 vote down star

I am redirecting users to https using a HttpModule for selected pages, what I don't want is to force users to use SSL if for some reason there browser, proxy, etc does not support it. Is it possible to detect if the client supports SSL connections using .NET?

flag

3 Answers

vote up 0 vote down check

Well, you can try to perform the SSL connection using a WebClient, but is that going to prove that the browser supports it as well?

UPDATE: Oh you want server-side .NET to test for it. Can't do that.

Besides, why would the browser or proxy not support it? HTTPS is very common these days (as it has been for the last decade).

link|flag
"why would the browser or proxy not support it?" That is what I said when asked what would happen if they don't support SSL. – Dean May 28 at 13:32
If IIS is used, then for such clients, 403 status code will be returned. You have the choice to change the error page to your own. support.microsoft.com/kb/318380 – Lex Li-MSFT May 31 at 10:29
vote up 0 vote down

http://bytes.com/groups/net-asp/347085-detect-https

Hopefully this helps. Be sure to read down.

edit:... ignore. re-read Q and this is answering something a little different

link|flag
vote up 0 vote down

Using serverside .NET - no. You can try to make invisible call to HTTPS page via Javascript on first page load.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.