using System.Collections.Specialized
int loop1, loop2;
NameValueCollection coll;
// ServerVariable-Sammlung in NameValueCollection-Objekt laden.
coll=Request.ServerVariables;
// Namen aller Schlüssel in ein String-Array abrufen.
String[] arr1 = coll.AllKeys;
for (Schleife1 = 0; Schleife1 < arr1.Länge; Schleife1++)
{
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>");
}
}
====== =========
Privater String getIp()
{/*穿过代理服务器取远程用户真实IP-Adresse:*/
if(Request.ServerVariables["HTTP_VIA"]!=null)
return Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
anders
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;