ASP.Net and SSL
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
What is the best way to determine if the user connected to my page via SSL or not? Look at the url for https? or is there a better way. I have some pages that can be accessed via SSL or openly and depending upon the connection type thier behavior is different. Thanks in Advance
-
What is the best way to determine if the user connected to my page via SSL or not? Look at the url for https? or is there a better way. I have some pages that can be accessed via SSL or openly and depending upon the connection type thier behavior is different. Thanks in Advance
Hi nemo. How about
HttpRequest.IsSecureConnection
? -
Hi nemo. How about
HttpRequest.IsSecureConnection
?