Description
-
References specific session variable in the
collection.
Property type
-
A WebSession
object.
Syntax
-
object.Item(Index)
The Item Property syntax has these parts:
| object |
An expression evaluating to an object
of type WebSessions. |
| Index |
Required. A Variant value. String
expression as session variable name, or integer as its
index. |
Remarks
-
Item property will return reference to specific session
variable object. For example, it can be used like
this
User.SessionVars("MyCount") = 5
this "short way" of accessing session
variables is allowed.
|