PasswordRecovery.UserLookupError Event
.NET Framework (current version)
Occurs when the membership provider cannot find the user name entered by the user.
Assembly: System.Web (in System.Web.dll)
The UserLookupError event is raised when the membership provider cannot find the user name entered by the user.
For more information about handling events, see NIB: Events and Delegates.
The following code example handles the UserLookupError event and resets the UserNameTitleText property if the user enters an invalid user name.
<%@ page language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Sub PasswordRecovery1_UserLookupError(ByVal sender As Object, ByVal e As System.EventArgs) PasswordRecovery1.UserNameTitleText = "Try again" PasswordRecovery1.TitleTextStyle.ForeColor = System.Drawing.Color.Red End Sub Sub PasswordRecovery1_AnswerLookupError(ByVal sender As Object, ByVal e As System.EventArgs) PasswordRecovery1.QuestionTitleText = "Try again" PasswordRecovery1.TitleTextStyle.ForeColor = System.Drawing.Color.Red End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>ASP.NET Example</title> </head> <body> <form id="form1" runat="server"> <asp:passwordrecovery id="PasswordRecovery1" runat="server" questiontitletext="Password Confirmation Question" usernametitletext="Get a new password" OnUserLookupError="PasswordRecovery1_UserLookupError" OnAnswerLookupError="PasswordRecovery1_AnswerLookupError"> <titletextstyle font-names="Arial" font-bold="True" forecolor="White" backcolor="Gray"> </titletextstyle> </asp:passwordrecovery> </form> </body> </html>
.NET Framework
Available since 2.0
Available since 2.0
Show: