如何获得访问者的浏览器类型,ip地址或更多
代码:
<!DOCTYPE html>
<html>
<body>
<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>
<br />
</body>
</html>
结果:
You are browsing this site with:
Your IP address is: 42.120.45.233
The DNS lookup of the IP address is: 42.120.45.233
The method used to call the page: GET
The server's domain name: w3cschool.cc
The server's port: 80
The server's software: Microsoft-IIS/7.5
相关文章
- JavaScript面向对象的两种书写方法以及差别
- asp下生成目录树结构的类
- 易心asp分页类 v1.0
- 发一个ASP的ADODB类代码
- ASP里面令人震撼地Debug类(VBScript)
- ASP中利用execute实现动态包含文件的方法
- Access 2000 数据库 80 万记录通用快速分页类
- asp:debug类调试程序
- asp提高首页性能的一个技巧
- MusicGet 类
- 管理员登录
- [ASP]精华代码
- 文章列表类别
- newasp中下载类
- 域名查询系统用到的类
- ASP中一个字符串处理类
- [ASP]使用类,实现模块化
- ASP 类专题
- ASP代码的对象化
- 实现支持逻辑搜索/单词搜索/词组搜索+支持OR/AND关键字的VBS CLASS!