Programming Reference Manual
 
Syntax
 
ParentSession.{property}
 
Description
This is one of the three dynamic objects that exist during the POST or GET event in the web server. These are: ParentRequest, ParentResponse and ParentSession. They cannot be used outside a web servers' session.
 
Use the Session Object to manage information describing a client session. A session may persist over multiple connections and for a long period of time. A "per-session" cookie, described in the Id Property topic, is used to group connections into single sessions.
 
Note  Session management does not work if the client browser does not support cookies or has cookie options disabled. In this case, a new session object is created for each connection. Set IdleTime to the maxium idle time that is configured for your web server so it automatically expires.
 
Listed below are the methods and/or properties for the ParentSession object:
 
 
See Also