How to verify Page is secure or Not using in ASP.NET and JavaScript

Posted By  jalpesh On 11 Apr 2011 09:04:29
emailbookmarkadd commentsprint
No of Views:775
Bookmarked:0 times
Votes:0 times

Introduction

Recently in one the project we require to check whether page is secure or not as we are going to open a new popup window from that page and that why we need to pass https protocol if we have that page secure. I have search lots of things on internet and I have found following ways of finding whether page is secure or not in ASP.NET or JavaScript.

In ASP.NET There are two way of doing it. Either we can use current request to check whether it is secured or not or we can use server variables to check whether it it secure or not just like following.

HttpContext.Current.Request.IsSecureConnection

Here in above code If this returns true then Page is secured otherwise it is not Or you can use following server variable to check the protocol.

Request.ServerVariables["SERVER_PROTOCOL"];

In JavaScript you can document.location.protocol to check whether page is secure or not. Just like following.

document.location.protocol=='https:'

So you can see its very easy to check whether page is secure or not. Hope you liked it… Stay tuned for more.

Sign Up to vote for this article
Other popular Tips/Tricks
Comments
There is no comments for this articles.
Leave a Reply
Title:
Display Name:
Email:
(not display in page for the security purphase)
Website:
Message:
Please refresh your screen using Ctrl+F5
If you can't read this number refresh your screen
Please input the anti-spam code that you can read in the image.
^ Scroll to Top