查看所有的Server Variables的环境变量

时间:2022-04-05 13:37:46

下列代码保存为ASP文件就可以了

  1. <table border=0 cellpadding=0 cellspacing=1 bgcolor="#d0c0F0">  
  2. <tr>  
  3.     <td><table border=0 cellpadding=3 cellspacing=0 bgcolor="#F0F0F8">  
  4.         <tR bgcolor="#d0c0f0">  
  5.          <td><b>Variable Name</b></td>  
  6.          <td><b>Value</b></td>  
  7.         </tr>  
  8.         <%  
  9.         With response  
  10.             For Each sKey In Request.ServerVariables  
  11.                 .Write "<tR>" & vbCrLf  
  12.                 .Write vbTab & "<td valign=""top""><b>" & sKey & "</b></td>" & vbCrLf  
  13.                 .Write vbTab & "<td>" & Request.ServerVariables(sKey) & "</td>" & vbCrLf  
  14.                 .Write "</tR>" & vbCrLf  
  15.             Next  
  16.         End With  
  17.         %>  
  18.      </table></td>  
  19. </tr>  
  20. </table>