Session.[collection|property|method]|("variable") |
Collections |
Contents | All the Session variables (and their values) are stored in the Contents collection. |
StaticObjects | All the objects created with the <OBJECT> tag, but not those created with the CreateObject() method of the Server object. |
Properties |
CodePage | The code page determines how character codes are mapped to display characters. |
LCID | A standard identifier that determines which system-defined locale should be used. |
SessionID | The Session ID for a particular user/session. |
TimeOut | How long (in minutes) should ASP wait for activity before ending this session and clearing its session variables? |
Events |
Session_OnEnd | A procedure that runs when a session ends. The code for this procedure (if one is used) is stored in the Global.asa file. |
Session_OnStart | A procedure that runs when a session begins. The code for this procedure is stored in the Global.asa file. |
Methods |
Abandon() | Terminate this session and everything (in particular, all the Session variables) that goes along with it. If the session times out, this happens automatically, but you can force it with the Abandon() method. |