Filename: server_variables.asp Use: Lists all of the ASP server variables in Request.ServerVariables
<table border="1" cellpadding="0" cellspacing="0"> <tr> <td><B>Variable</B></td> <td><B>Value</B></td> </tr>
<% For Each Item In Request.ServerVariables %>
<tr> <td><FONT SIZE="2"><%= Item %></FONT></td> <td><FONT SIZE="2"><%= Request.ServerVariables(Item) %> </FONT></td> </tr>
<% Next %>
</table>