Password Property



 
The Password property contains the password of the admin.


Syntax

    Admin.Password [=str]
    
Possible Values
    String that specifies the password.

    The property is write only.
Remarks
    None.
Examples
    The following example sets the password of the first available admin.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    admin = SiteCafe.Server.Admins.GetAdminByIndex(1);
    admin.Password = "newPassword";
    </SCRIPT>
    

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

Back to top