ChangePassword.ChangePasswordError Event
.NET Framework 3.0
Occurs when there is an error changing the password for the user account.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
ChangePassword Members
System.Web.UI.WebControls Namespace
OnChangePasswordError
ASP.NET Login Controls Overview
Customizing the Appearance of ASP.NET Login Controls
Web Server Controls Templates (Visual Studio)
How to: Display Information to Anonymous and Logged-In Users
Web Site Administration Tool Security Tab
Securing Login Controls
Basic Security Practices for Web Applications
Securing Membership
Assembly: System.Web (in system.web.dll)
'Declaration Public Event ChangePasswordError As EventHandler 'Usage Dim instance As ChangePassword Dim handler As EventHandler AddHandler instance.ChangePasswordError, handler
/** @event */ public void add_ChangePasswordError (EventHandler value) /** @event */ public void remove_ChangePasswordError (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
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.
Reference
ChangePassword ClassChangePassword Members
System.Web.UI.WebControls Namespace
OnChangePasswordError
Other Resources
Server Event Handling in ASP.NET Web PagesASP.NET Login Controls Overview
Customizing the Appearance of ASP.NET Login Controls
Web Server Controls Templates (Visual Studio)
How to: Display Information to Anonymous and Logged-In Users
Web Site Administration Tool Security Tab
Securing Login Controls
Basic Security Practices for Web Applications
Securing Membership
Community Additions
ADD
Show: