CreateUserWizard.CreatingUser Event
.NET Framework 3.0
Occurs before the membership provider is called to create the new Web site user account.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The CreatingUser event is raised prior to calling the CreateUser method on the membership provider specified in the MembershipProvider property.
Use the CreatingUser event to establish defaults or modify the information entered by the user before passing the information to the membership provider.
For more information about handling events, see Consuming Events.
The following code example uses the CreatingUser event to make the UserName property all lowercase before submitting it to the membership provider specified in the MembershipProvider property.
<%@ page language="C#"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> void Createuserwizard1_CreatingUser (object sender, LoginCancelEventArgs e) { Createuserwizard1.UserName.ToLower(); } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>CreateUserWizard.CreatingUser sample</title> </head> <body> <form id="form1" runat="server"> <div> <asp:createuserwizard id="Createuserwizard1" runat="server" oncreatinguser="Createuserwizard1_CreatingUser" > </asp:createuserwizard> </div> </form> </body> </html>
Community Additions
ADD
Show: