程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ASP.NET 取得客戶端信息

ASP.NET 取得客戶端信息

編輯:.NET實例教程


using System.Collections.Specialized  

int loop1, loop2;
   NameValueCollection coll;
 
   // Load ServerVariable collection into NameValueCollection object.
   coll=Request.ServerVariables; 
   // Get names of all keys into a string array. 
   String[] arr1 = coll.AllKeys; 
   for (loop1 = 0; loop1 < arr1.Length; loop1++) 
   {
    Response.Write("Key: " + arr1[loop1] + "<br>");
    String[] arr2=coll.GetValues(arr1[loop1]);
    for (loop2 = 0; loop2 < arr2.Length; loop2++) 
    {
     Response.Write("Value " + loop2 + ": " + arr2[loop2] + "<br>");
    }
   }


====以下是一個取得IP和操作系統以及浏覽器的例子=========

private string getIp()
{/*穿過代理服務器取遠程用戶真實IP地址:*/
if(Request.ServerVariables["HTTP_VIA"]!=null)
return Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
else
return Request.ServerVariables["REMOTE_ADDR"].ToString();
}
Label2.Text =getIp();
HttpBrowserCapabilities bc = new HttpBrowserCapabilitIEs();
bc = Request.Browser;
string xitong ="你的操作系統為";
Label3.Text=xitong+bc.Platform + " 浏覽器類型:" + bc.Type;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved