LastLogin Property



 
The LastLogin property contains the date of the last login.


Syntax

    [long=] Account.LastLogin
    
Possible Values
    Long value that retrieves the date.

    The property is read only.
Remarks
    The date contains the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the supplied date.
Examples
    The following example displays the date of the last login of the first available account.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
    alert(account.LastLogin);
    </SCRIPT>
    

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

Back to top