ok, provo a copiarlo quì.
tenete presente che l'ho aperto con Dreamweaver
e non so se è il modo + corretto.
eccolo:
<%
'******************************************************
'FREEASPX.IT - Il portale dedicato al mondo Visual.NET*
'******************************************************
%>
<%
Dim Item
%>
<!-- Saluto iniziale. La pagina ASP già estrapola i primi dati -->
Ciao <b><%= Request.ServerVariables("REMOTE_ADDR") %></b>! Il tuo browser
si è identificato come: <b><%= Request.ServerVariables("HTTP_USER_AGENT") %></b>.
<BR>
<BR>
<!-- Visualizza tutte le variabile del server -->
<TABLE BORDER=2>
<TR>
<TD><B>Variabile del server</B></TD>
<TD><B>Valore</B></TD>
</TR>
<% For Each Item In Request.ServerVariables %>
<TR>
<TD><FONT SIZE="-1"><%= Item %></FONT></TD>
<TD><FONT SIZE="-1"><%= Request.ServerVariables(Item) %> </FONT></TD>
</TR>
<% Next %>
</TABLE>
<!-- Script by FreeAspx.it -->