Logon Object
The Logon object contains an admin's login and logoff dates.
Members Table
The following table lists the members provided by the Logon object.
Remarks
This object is returned by the Item method.
Use the Logon object to receive an admin's login and logoff dates.
Examples
The following example displays the first logon date 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.Item(1).LogonDate);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top