How do I tell if a page is SSL'd in "classic" ASP? I can't use Javascript because what I'm outputting is the results of a <noscript> tag.
<noscript>
This can't be changed or modified in IIS. It has to be in the script file itself.
You should be able to get this info via
Request.ServerVariables("HTTPS")
See here for more info.