The following will list all available server variables 
and the values that they return. 
To iterate this collection, use the following code:

for each key in Request.ServerVariables 
strServerVar = strServerVar & key & " = " & Request.ServerVariables(key)
next