SessionVar.Get

string SessionVar.Get ( 

string VariableName )

Example 1

sMyVar = SessionVar.Get("%MyVar%");

Gets the contents of the session variable %MyVar%.  If %MyVar% contains other session variables, the names of those variable will be returned, not their expanded contents.

Example 2

sResult = SessionVar.Get(sVarName);

Gets the contents of the session variable contained in "sVarName".  If this variable contains other session variables, these variable names will be returned.

See also:  Related Actions