Ecco le poche righe di codice necessarie per stampare a video e al volo le ServerVariables definite su un server:
<%@LANGUAGE="VBSCRIPT"%>
<%
'Interroga il server per avere al volo un elenco delle servervariables
%>
<head>
<title>Lettura server variables</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<center><table width="90%" border="0" cellpadding='0' cellspacing='0'>
<%
cont=0 ' serve solo per alternare il colore delle righe :-)
For Each voce In request.servervariables
if cont mod 2 = 0 then
response.write ("<tr bgcolor='#FFFFCC'><td width='10%' align='left'><B>" & voce & "</B></td><td align='left'>" & request.servervariables(voce) & "</td></tr>")
else
response.write ("<tr bgcolor='#dddddd'><td width='10%' align='left'><B>" & voce & "</B></td><td align='left'>" & request.servervariables(voce) & "</td></tr>")
end if
cont=cont+1
next
%>
</table></center>
<body>
</body>
</html>