Monday, December 17, 2007

How to get the enviroment variable information of the visitor at client-side

How to get the enviroment variable information of the visitor at client-side

- We will use the Request.ServerVariables to get the enviroment variable:

<%

For Each Item In Request.ServerVariables

strList = strList & "" & Item & " >>>"

strList = strList & Request.ServerVariables(Item) & "
"

Next

Response.Write strList

%>


No comments: