codice:
<%
for each x in Session.Contents
  Response.Write(x & "=" & Session.Contents(x) & "
")
next
%>or:
oppure
<%
For i=1 to Session.Contents.Count
  Response.Write(i & "=" & Session.Contents(i) & "
")
Next
%>
Roby