如何獲得訪問者的瀏覽器類型,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!