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的主要内容,如果未能解决你的问题,请参考以下文章