List all session info

前端 未结 3 1222
天命终不由人
天命终不由人 2021-02-18 23:53

I want to display all the session information of my asp.net page (aspx) in the page. How can I do that?

The programming language is C#.

3条回答
  •  醉酒成梦
    2021-02-19 00:45

     foreach (string s in Session) {
            Response.Write(string.Concat(s, "=", Session[s]));
        }
    

提交回复
热议问题