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