Wednesday, August 15, 2007

All ASP Server Variables

How many server variables are available for use in your .asp scripts? Display them all with this simple script.

-----------------
for each name in request.servervariables
response.write name
request.servervariables(name)
Next
-----------------

No comments: