|
|
|

|

|
Dicas
|

|
ASP - Active Server Page (Miscelâneas)
|
|
 |
Título da Dica: Página que exibe a lista Server.Variables
|
 |
|
|
Postada em 17/10/2003 por ^HEAVY-METAL^
<html> <head> <title>Server Variables</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <div align="center"><font face="Tahoma" size="2">Lista das Variáveis do Servidor</font><br><br>
<table border=0 vspace="0" hspace="0" cellpadding="1" cellspacing="1" bgcolor="#FF6633" bordercolor="#FFFFFF" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" width="400"> <tr bordercolor="#FFFFFF"> <td bgcolor="#CCCCCC"><font face="Tahoma" size="2">Server Variable</font></td> <td bgcolor="#FFFFFF"><font face="Tahoma" size="2">Value</font></td> </tr> <% For Each Item In Request.ServerVariables %> <tr> <td bgcolor="#CCCCCC"><font size="2" face="Tahoma"><%= Item %></font></td> <td bgcolor="#FFFFFF"><font size="2" face="Tahoma"><%= Request.ServerVariables(Item) %> </font></td> </tr>
<% Next %>
</table>
</div> </body> </html>
T+,
|
|
|
|

|