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?

Web Development Code Library ASPShow all server variables

Show all server variables

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
%>
Excellence. Our Measure. Our Motto. Our Goal.