<html>
  <head><title>Servervariables</title></head>
<body>
<%
row = 1
%>
<table border="0" cellpadding="0" cellspacing="0" width="70%">
  <tr>
    <td bgcolor="#000000"><font size="4" face="Verdana" color="#FFFFFF"><b>Variable</b></font></td><td bgcolor="#000000"><font face="Verdana" size="4" color="#FFFFFF"><b>Request.servervariables(variable)</b></font></td>
  </tr>
  <% for each variable in Request.ServerVariables %>
  <% if cint(row mod 2) = 1 then color = "#c0c0c0" else color = "#FFFFFF" end if %>
  <tr>
    <td valign="top" bgcolor="<% = color %>"><% = variable %></td><td bgcolor="<% = color %>"><% = Request.ServerVariables(variable)%></td>
  </tr>
  <% row = row +1 %>
  <%next%>
</table>