One way of collecting valuable web statistics is through the use of server variables. Server variables retrieve information from the user's browser. You can use these to get all kinds of useful information, such as browser details, connection methods, and more. To get a list of all of the available server variables, create a servervariables.asp page with the code below:
<% FOR EACH SV IN Request.ServerVariables Response.Write "
" & SV & " = " & request.servervariables(SV) & "
"
NEXT
%>
Next, simply publish the page and open it on the Internet. It will display a list of them for you.
http://www.aspwebpro.com/aspscripts/statistics/servervariables.asp
No comments:
Post a Comment