You can loop through the StaticObjects collection, to see the values of all objects stored in the Session object:
<%
dim i
For Each i in Session.StaticObjects
Response.Write(i & "<br>")
Next
%>
dim i
For Each i in Session.StaticObjects
Response.Write(i & "<br>")
Next
%>
Practice Excercise Practice now