ChangePassword.ChangePasswordError Event

Definition

Occurs when there is an error changing the password for the user account.

public:
 event EventHandler ^ ChangePasswordError;
public event EventHandler ChangePasswordError;
member this.ChangePasswordError : EventHandler 
Public Custom Event ChangePasswordError As EventHandler 

Event Type

Remarks

The ChangePasswordError event is raised when the membership provider specified in the MembershipProvider property encounters an error while attempting to change the password for a user account. This can occur if the user enters an incorrect current password or an invalid new password. The specified MembershipProvider object does not indicate the reason why changing the password failed, only that the password was not changed.

Use the ChangePasswordError event to perform custom actions when the password is not changed.

Applies to

See also