Is it possible to access Request object from Global.asa file?

Posted by Rob Segal on Stack Overflow See other posts from Stack Overflow or by Rob Segal
Published on 2010-03-18T19:16:48Z Indexed on 2010/03/18 19:31 UTC
Read the original article Hit count: 362

Filed under:

I need to get access to some server variables like APPL_PHYSICAL_PATH from the the Global.asa file. I can do this on any page of my site using the Request object as follows...

Request.ServerVariables("APPL_PHYSICAL_PATH")

But I don't seem to have access to the Request object within the Global.asa file. Is there an equivalent call I can do here with the Server object?

© Stack Overflow or respective owner

Related posts about asp-classic