ActivationDate Property
The ActivationDate property contains the activation date (first login) of the account.
Syntax
[long=] Account.ActivationDate
|
Possible Values
Long value that retrieves the date.
|
The property is read only.
Remarks
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 activation date of the first available account.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
alert(account.ActivationDate);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top