%@ LANGUAGE = VBScript %>
<% Option Explicit %>
<% Response.Expires= -1 %>
Session Object
Session Object: List of Items (ASP)
Session Object properties: (under construction)
<%
Response.Write( "" )
Response.Write( "| Property | Value |
" )
Response.Write( "| SessionID | " & Session.SessionID & " |
")
Response.Write( "| Timeout | " & Session.Timeout & " - minuets |
" )
Response.Write( "| CodePage | " & Session.CodePage & " |
" )
Response.Write( "| LCID | " & Session.LCID & " |
" )
Response.Write( "
" )
%>
<%
call listItemsInObject(Session.Contents, "Session.Contents")
%>
<%
call listItemsInObject(Session.StaticObjects, "Session.StaticObjects")
%>