Request.ServerVariables collection

A collection of standard CGI values.

Usage

value= Request.ServerVariables(name)

Details

The standard CGI variable are available in this collection.

Some Useful Server Variables

ALL_HTTP

A string containing all of the request headers. Check this too see what other variables are available on your server.

HTTP_VIA

The name of any proxy software between the client and the server.

HTTP_FORWARDED_FOR

The real address of a client using a proxy server.

LOGON_USER

The Windows username the client is using to access a non-anonynous address.

PATH_INFO

Extra (fake) path info, after the filename: /page.asp/more.

Note

PATH_INFO works incorrectly unless the Metabase key AllowPathInfoForScriptMapping is modified.

REMOTE_ADDR

The address of the client system.

SCRIPT_NAME

The virtual path of the currently running page.

URL

The address of the currently running page.

This collection contains a list of IStringList collection items.