Author: Ascan | Posted on: 7/10/2008 7:58:35 AM | Views : 644

First off I should probably say that I'm new to this in case I make any mistakes.

I'm trying to add steps to a member sign up that will be added to the profile table in the database (sql express) and I've come across some example code where some one has done this. The Code looks like this

 
p.Country = ((DropDownList)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("Country")).SelectedValue;
p.Gender = ((DropDownList)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("Gender")).SelectedValue;

p.Age = Int32.Parse((( Go to the complete details ...