Is it possible to access Request object from Global.asa file?
- by Rob Segal
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?