Global object for managing the servlet session
| $session | Global object for managing the servlet session |
| Functions | |
| clear | deletes a session. |
| get | gets a value from the session. |
| set | Sets a value in the session. |
| Properties | |
| id | The session id (readonly) |
| created | Session created time (readonly). |
| timeoutMinutes | Number of minutes of inactivity before session is deleted. |
get:function( key )
gets a value from the session.
| key | String variable name to retrieve |
value of key in the current session
deletes a session.
clear:function()
gets a value from the session.
get:function( key )
Sets a value in the session.
set:function( key, value )