Skip to content

Classic ASP Print Server Variables

Quick snippet of code to loop through and print values of the Server Variables collection:

< % For Each X in Request.ServerVariables Response.Write(X & " - " & Request.ServerVariables(X) & " " & "
“)
Next
%>