保存为server.asp
运行
希望该文件对你有很大帮助。。<%@language=vbscript%><table border="1" cellpadding="0" cellspacing="0" width="100%" bordercolorlight="#FFFFFF">
  <tr>
    <td width="23%">
      <p align="center">ServerVariables</td>
    <td width="77%">
      <p align="center">Value</td>
  </tr>
  <%for each name in Request.ServerVariables%>
  <tr>
    <td width="23%">&nbsp; <%=name%></td>
    <td width="77%">&nbsp; <%=Request.ServerVariables(name)%></td>
  </tr>
  <%next%>
</table>