Password Property



 
The Password property contains the password of the user.


Syntax

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

    The property is write only.
Remarks
    Note that this property can not be read.
Examples
    The following example sets the password of the first user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    users = SiteCafe.Server.Users.GetUsers(1, 10);
    users.Item(1).Password = "NewPassword";
    </SCRIPT>
    

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

Back to top