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