Home wilkeo>JavaScript    
  This simple script lists all information about the user

Basically, this script loops through all the server variables found in the request object by using a for loop. Use this to document all user information and put it in a database!

ASP Samples Interactive Scripting Engine

<html>

<body>
<%
for each sv in request.servervariables
response.write "<br>" & sv & "=" & request.servervariables(sv) & "<br>"
next
%>
<body>
<html>