Count Property
The Count property contains the number of logons / logoffs.
Syntax
Possible Values
Long value that retrieves the number of logons / logoffs.
|
The property is read only.
Remarks
Examples
The following example displays the number of logons / logoffs of the first admin.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
logons = SiteCafe.Server.Admins.Logons.GetLogons(1, 0, 0, 1, 1, true);
alert(logons.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top