vote up 2 vote down star

I have a web application hosted on multiple servers some of which are on https. How can I check from code behind if a page is currently in http or https?

flag

3 Answers

vote up 10 vote down check

You can refer to the Request.IsSecureConnection property on the HttpRequest class. For a full reference outside a page, user control or alike, use HttpContext.Current.Request.IsSecureConnection.

link|flag
29 seconds... ;-) – Rashack Aug 31 at 8:18
vote up 1 vote down

Alternatively:

Request.ServerVariables["SERVER_PROTOCOL"];
link|flag
vote up 2 vote down

Use - HttpContext.Current.Request.IsSecureConnection

link|flag

Your Answer

Get an OpenID
or

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