
ASP Browser Information +
The following script will give you information about your ip address, browser type and more!
Example
You are browsing this site with: CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
Your IP address is: 38.107.179.227
The DNS lookup of the IP address is: 38.107.179.227
The method used to call the page: GET
The server's domain name: www.wizzardweb.co.uk
The server's port: 80
The server's software: Microsoft-IIS/6.0
Script Source
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<p>
<b>You are browsing this site with:</b>
<%Response.Write(Request.ServerVariables("http_user_agent"))%>
</p>
<p>
<b>Your IP address is:</b>
<%Response.Write(Request.ServerVariables("remote_addr"))%>
</p>
<p>
<b>The DNS lookup of the IP address is:</b>
<%Response.Write(Request.ServerVariables("remote_host"))%>
</p>
<p>
<b>The method used to call the page:</b>
<%Response.Write(Request.ServerVariables("request_method"))%>
</p>
<p>
<b>The server's domain name:</b>
<%Response.Write(Request.ServerVariables("server_name"))%>
</p>
<p>
<b>The server's port:</b>
<%Response.Write(Request.ServerVariables("server_port"))%>
</p>
<p>
<b>The server's software:</b>
<%Response.Write(Request.ServerVariables("server_software"))%>
</p>
Please let me know if this script was helpful to you.