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#.
Display in listbox ( Adding for personal reference)
int[] array = new int[400]; for (int i = 0; i < Session.Count; i++) { var crntSession = Session.Keys[i]; lstbx.Items.Add(crntSession + "=" + Session[crntSession] + ""); }