Click here for a live demonstration

<%@ Language=VBScript %>
<HTML>
<HEAD>
<title>Server Variables using ASP</title></HEAD>
<body>
<table border=2>
 <tr>
  <td>
   <b>Server Variable</b>
  </td>
  <td>
   <b>Value</b>
  </td>
 </tr>
<% For Each Item In Request.ServerVariables %>
<tr>
<td> <font size="-1"><%=Item%></font> </td>
<td> <font size="-1"><%=Request.ServerVariables(Item)%>&nbsp;</font> </td>
</tr>
<% Next %>
</table>
</HTML>