Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

WebSecurity - ChangePassword()


❮ WebSecurity

Definition

The ChangePassword() method changes the password for a specified user.


Syntax in C# and VB

WebSecurity.ChangePassword(userName, oldPassword, newPassword)

Parameters

Parameter Type Description
userName String The user name
oldPassword String The user's old password
newPassword String The new password

Return Value

Type Description
Boolean true if the password is changed, otherwise false

Errors and Exceptions

Any access to the WebSecurity object throws an InvalidOperationException if:

  • The InitializeDatabaseConnection() method has not been called
  • SimpleMembership is not initialized (or disabled in the website configuration)

❮ WebSecurity