Count Property
The Count property contains the number of users.
Syntax
Possible Values
Long value that retrieves the number of users.
|
The property is read only.
Remarks
Examples
The following example displays the number of users (maximum is 100).
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
users = SiteCafe.Server.Users.GetUsers(1, 100);
alert(users.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top