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