SetDatabasePassword Method



 
The SetDatabasePassword method sets a new database password.


Syntax

    SiteCafe.Server.SetDatabasePassword(password)
    
Parameters
    password String that specifies the new password.
Return Value
    None.
Remarks
    None.
Examples
    The following example sets a new database password.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe.Server.SetDatabasePassword("myNewPassword");
    </SCRIPT>
    

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

Back to top