vote up 1 vote down star
2

How do I tell if a page is SSL'd in "classic" ASP? Can't use javascript because what I'm outputting is the results of a "noscript" tag. :D

Can't be changed or modified in IIS - has to be in the script file itself.

e.g. https://foobar/something.asp --> should say YES http://foobar/something.asp --> should say NO

flag

1 Answer

vote up 3 vote down check

You should be able to get this info via

Request.ServerVariables("HTTPS")

See here for more info.

link|flag
That's what I needed, thanks! – Matt Rogish Apr 10 at 15:42

Your Answer

Get an OpenID
or

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