Asp.Net 遍历 循环 显示所有COOKIS,SESSION,Applocation

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.Net 遍历 循环 显示所有COOKIS,SESSION,Applocation相关的知识,希望对你有一定的参考价值。

在C#中循环显示SESSIOn:

Response.Write("<br>Session的所有值:<br>");
        foreach (string obj in Session.Contents)
        {
            Response.Write(obj.ToString() + ":" + Session[obj] + "<br>");
        }

在C#中循环显示CookiEs:
        Response.Write("<br>CookiEs的所有值:<br>");

        for (int i = 0; i < HttpContext.Current.Request.Cookies.Count; i++)
        {

            Response.Write(HttpContext.Current.Request.Cookies.Keys[i] + ":" + HttpContext.Current.Request.Cookies[i].Value.ToString() + "<br>");

        }


在C#中循环显示Application:

        Response.Write("<br>Application的所有值:<br>");

        for (int i = 0; i < HttpContext.Current.Application.Count; i++)
        {

            Response.Write(HttpContext.Current.Application.Keys[i] + ":" + HttpContext.Current.Application[i].ToString() + "<br>");

        }

  

以上是关于Asp.Net 遍历 循环 显示所有COOKIS,SESSION,Applocation的主要内容,如果未能解决你的问题,请参考以下文章

循环访问 asp.net 网页上的所有控件

循环数组并将结果发送到查看 ASP.NET

在登录时循环自定义声明 - Asp.net 核心

ASP.NET Web API:JSON 序列化循环引用

显示所有评论 innerHtml Asp.net

如何遍历 MultiSelectList 发布的值并将每个值插入 ASP.Net MVC 5 中的新数据库行?