protected void Page_Load(object sender, EventArgs e)
{
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" + loop1 + ": " + arr1[loop1] + "<br>");
String[] arr2 = coll.GetValues(arr1[loop1]);
for (loop2 = 0; loop2 < arr2.Length; loop2++)
{
Response.Write("Value " + loop2 + ": " + Server.HtmlEncode(arr2[loop2]) + "<p>");
}
}
}
HttpContext.Current.Request.ServerVariables 所有命名的服务器变量的名称和值。
最新推荐文章于 2024-12-23 15:54:11 发布
本文介绍了一段ASP.NET代码,该代码演示了如何使用Request对象获取服务器变量,并将这些变量展示在网页上。通过NameValueCollection对象加载服务器变量,然后遍历所有键值对并输出。
1453

被折叠的 条评论
为什么被折叠?



