I have a site that I support which is a mixture of classic ASP and ASP.NET. My goal is to encrypt the querystring in a manner that is transparent to the user. On the ASP.NET side I am using a approach similar to what Mads Kristensen has put together here: http://madskristensen.net/post/HttpModule-for-query-string-encryption.aspx
My problem is how can I replicate this on the classic ASP side? The HttpModule wont work for classic ASP as those requests are handled outside of the ASP.NET page life cycle so I have been looking at handling this in the Global.asa with no luck so far. To replicate the httpmodule I would need to get a hold of the HttpContext and I havent found a vbscript equivalent. I am a bit stuck any assistance or suggestions would be appreciated.