Things You'll Need:
- A Windows based sever running ASP or access to a windows based server running asp.
- A basic text editor (notepad will do )
- FTP software to upload your finished pages.
-
Step 1
Using your text editor program, create a new file and name it info.asp. Make sure to give the file the .asp extension so the server will know that the pages has server scripts to process.
I will post all ASP Commands in the very last step so you can copy/paste the script into your page. -
Step 2
Type this line:
<%Response.Write(Request.ServerVariables("http_user_agent"))%>
OR
<%=Request.ServerVariables("http_user_agent")%>
the <%= is equivalent to the Response.Write command
It will show you basic information about the visitors browser. -
Step 3
be sure to add line breaks or paragraph tags to separate you information:
-
Step 4
Type this line:
<%Response.Write(Request.ServerVariables("remote_host"))%>
OR
<%=(Request.ServerVariables("remote_host")%>
To show your visitors IP address. -
Step 5
Type this line:
<%=Request.ServerVariables("ALL_RAW")%>
Will give you all the browser information about your visitor. -
Step 6
Save the file
-
Step 7
Upload this file to your web server
-
Step 8
call this file in your web browser as:
http://yoursitename.com/info.asp -
Step 9
See all the information that you can gather using this script.
-
Step 10
All commands:
<%=Request.ServerVariables("http_user_agent")%>
<%= Request.ServerVariables("remote_addr")%>
<%= Request.ServerVariables("ALL_RAW")%>








