This browser does not support basic Web standards, preventing the display of our site's intended design. May we suggest that you upgrade your browser?
Shows all current server variables and their values. Great for debugging your application.
'This code will display all the server variables available to you, as well as
'their current values.
<% For Each NAME in Request.ServerVariables
Response.Write(NAME & ": " & Request.ServerVariables(NAME) & "<br>")
Next
%>