CreateUserWizard.CreatedUser Event
Occurs after the membership provider has created the new Web site user account.
Assembly: System.Web (in System.Web.dll)
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>
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. |
Available since 2.0
.jpeg?cs-save-lang=1&cs-lang=fsharp)