ASP.NET 取得客户端信息

2008-02-22 09:31:42来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

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;

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:解决ASPX网页另类load两次

下一篇:分享个极好的无刷新二级联动下拉列表,同样适用与firefox