How to: Enable User Registration
If your application uses the ASP.NET membership system to authenticate users, you can use the CreateUserWizard control to allow users to create a new user entry in the membership system (The CreateUserWizard control can also be used by administrators to create new users).
Note |
|---|
|
If your Web application uses Integrated Windows authentication, you cannot create or manage users from the application. For more information, see Limiting Access to ASP.NET Web Sites. |
For information on how to configure your application to use membership, see Introduction to Membership for more details.
To enable user registration
-
Create or edit an ASP.NET Web page that does not require permissions.
-
Place a CreateUserWizard control on the page using the following syntax:
<asp:CreateUserWizard ID="CreateUserWizard1" Runat="server"> </asp:CreateUserWizard>
-
Set the ContinueDestinationPageUrl property to the URL of the page that users will visit after completing registration, such as your home page or a member page.
Note When users complete the registration form, by default they are logged in automatically.