如何獲得訪問者的瀏覽器類型,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>
結(jié)果:
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
相關(guān)文章
- JavaScript面向?qū)ο蟮膬煞N書寫方法以及差別
- asp下生成目錄樹結(jié)構(gòu)的類
- 易心asp分頁(yè)類 v1.0
- 發(fā)一個(gè)ASP的ADODB類代碼
- ASP里面令人震撼地Debug類(VBScript)
- ASP中利用execute實(shí)現(xiàn)動(dòng)態(tài)包含文件的方法
- Access 2000 數(shù)據(jù)庫(kù) 80 萬(wàn)記錄通用快速分頁(yè)類
- asp:debug類調(diào)試程序
- asp提高首頁(yè)性能的一個(gè)技巧
- MusicGet 類
- 管理員登錄
- [ASP]精華代碼
- 文章列表類別
- newasp中下載類
- 域名查詢系統(tǒng)用到的類
- ASP中一個(gè)字符串處理類
- [ASP]使用類,實(shí)現(xiàn)模塊化
- ASP 類專題
- ASP代碼的對(duì)象化
- 實(shí)現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!