Another piece of ASP code I use quite often at work...

<% on error resume next dim i for each i in session.contents response.write( i & " = " & session(i) & "
")
next
%>