CurrentSessionIndex Property
The CurrentSessionIndex property contains the computer's current session index.
Syntax
[long=] Computer.CurrentSessionIndex
|
Possible Values
Long value that retrieves the session index.
|
The property is read only.
Remarks
Examples
The following example displays the current session index number of the first available computer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
computer = SiteCafe.Server.Computers.GetComputerByIndex(1);
alert(computer.CurrentSessionIndex);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top