| Every time an ASP Application/Web Page is accessed, the
Web Server creates environment variables that contain information about the
Browser, Web Server and the ASP Application/Web Page being accessed. You can
easily access these environment variables by using the ServerObjects method of
the Request Object. An example of the usage would be...
Request.ServerVariables("ServerVariableName")
The ServerVariableName just needs to
be replaced with the server variable you are wanting. Below is a list of some of
the server variables that you can use to provide/view information about your ASP
Applications/Web Pages... |