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#.
foreach (string s in Session) { Response.Write(string.Concat(s, "=", Session[s])); }