<%
Dim Variabile
%>
<!-- Un piccolo segno di educazione : salutare non costa nulla ! -->
<font face="Verdana" size="2">
Ciao <b><%= Request.ServerVariables("REMOTE_ADDR") %> </b>!
<p>Il tuo browser si è identificato come: <b><%= Request.ServerVariables("HTTP_USER_AGENT") %> </b>.</p>
<p>
<!-- Visualizzo tutte le variabile del server -->
</font>
</p>
<TABLE BORDER=0 cellspacing="3" cellpadding="3">
<TR>
<TD style="border: 1 solid #000000">
<B>
<font face="Verdana" size="2">Variabile del server</font>
</B>
</TD>
<TD style="border: 1 solid #000000">
<B>
<font face="Verdana" size="2">Valore della variabile</font>
</B>
</TD>
</TR>
<% For Each variabile In Request.ServerVariables %>
<TR>
<TD style="border: 1 solid #000000">
<font face="Verdana" size="2">
<%= Variabile %>
</font>
</TD>
<TD style="border: 1 solid #000000">
<font face="Verdana" size="2">
<%= Request.ServerVariables(Variabile) %>
</font>
</TD>
</TR>
<% Next %>
</TABLE>