ComputerIndex Property
The ComputerIndex property contains the computer index number of the session.
Syntax
[long=] Session.ComputerIndex
|
Possible Values
Long value that retrieves the computer index.
|
The property is read only.
Remarks
Examples
The following example displays the computer index number of the first computer's first session.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
sessions = SiteCafe.Server.Sessions.GetSessions(1, 0, 0, 1, 10, true);
alert(sessions.Item(1).ComputerIndex);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top