PasswordRecovery.AnswerLookupError Event
.NET Framework 3.0
Occurs when the user enters an incorrect answer to the password recovery confirmation question.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: event EventHandler^ AnswerLookupError { void add (EventHandler^ value); void remove (EventHandler^ value); }
/** @event */ public void add_AnswerLookupError (EventHandler value) /** @event */ public void remove_AnswerLookupError (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The AnswerLookupError event is raised when the answer to the password recovery question is not validated by the membership provider defined in the MembershipProvider property.
If the membership provider does not support password recovery question and answer, the AnswerLookupError event is never raised.
For more information about handling events, see Consuming Events.
The following code example uses the AnswerLookupError event to reset the QuestionTitleText property if the user enters an invalid answer to the password confirmation question.
Community Additions
ADD
Show: