Introduction
CreateUserWizard is the one of the most famous control for authenticating . Means if you want to store authenticated user information into your database then you can use CreateUserWizard control. Now at this time we will learn how to add new fields in CreateUserWizard control such as Name, Gender, Country etc.follow some steps for doing this.
Step-1: Drop one CreateUserWizard control to the design page.
Step-2: Select Customize Create User Step link by ShowSmart tag.
Step-3: Add new rows after last row also add some controls in the new add rows.
Step-4: Handle CreatedUser Event of the CreateUserWizard control.
protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
ProfileCommon pc = (ProfileCommon)ProfileCommon.Create(CreateUserWizard1.UserName, true);
pc.Country = ((DropDownList)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("DropDownList2")).SelectedValue;
pc.Gender = ((DropDownList)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("DropDownList1")).SelectedValue;
pc.Name = ((TextBox )CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("name")).Text;
pc.Save();
}
<system.web>
<anonymousIdentification enabled ="true"/>
<profile>
<properties >
<add name="Name" type ="string"/>
<add name ="Country" type ="string"/>
<add name ="Gender" type ="String"/>
</properties>
</profile>
</system.web>
Run your Application
Tidak ada komentar:
Posting Komentar