CreateUserWizard.CreatedUser Event

 

Occurs after the membership provider has created the new Web site user account.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

member CreatedUser : IEvent<EventHandler,
    EventArgs>

The CreatedUser event is raised after the membership provider specified in the MembershipProvider property creates the new Web site user account. If the LoginCreatedUser property is true, the user is logged on to the Web site after the CreatedUser event.

Use the CreatedUser event to set Web site values, such as personalization values, before the user is logged on to the site for the first time.

For more information about handling events, see Handling and Raising Events.

The following code example uses the CreatedUser event to store the user's first and last name in personalization properties. The code example requires the following entries in the Web.config file.

<configuration>

<system.web>

<profile>

<properties>

<add name="lastName" />

<add name="firstName" />

<add name="userName" />

</properties>

</profile>

</system.web>

</configuration>

No code example is currently available or this language may not be supported.
System_CAPS_security Security Note

This example has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.

.NET Framework
Available since 2.0
Return to top
Show: