LogoffDate Property



 
The LogoffDate property contains the logoff date.


Syntax

    Logon.LogoffDate [=long]
    
Possible Values
    Long value that specifies or retrieves the date.

    The property is read/write.
Remarks
    Dates are specified by the return value of the Date.getVarDate method divided by 1000.
    Returned dates contain the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC).
Examples
    The following example displays the first admin's first logoff date.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    logons = SiteCafe.Server.Admins.Logons.GetLogons(1, 0, 0, 1, 1, true);
    alert(logons.Item(1).LogoffDate);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top