ValidDuration Property
The ValidDuration property contains the number of seconds the account will be valid after the activation (first login).
Syntax
Account.ValidDuration [=long]
|
Possible Values
Long value that specifies or retrieves the duration.
|
The property is read/write.
Remarks
This property is constant.
Durations are a number of seconds.
Examples
The following example displays the number of seconds the first account will be valid after the activation.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
alert(account.ValidDuration);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top