How to get Control Value From CreateUserWizard Control
Now I am going to discuss how to get the Controls Values ( ie: Textbox , Dropdownlist etc.. ) inside the CreateUserWizard control, In CreateUserWizard Control on first view you can't able to get the Controls value directly.
Using FindControl i am getting the control value.
Write these Code on CreateUserWizard_CreatingUser Event
DropDownList Questionddl = (DropDownList)CreateUserWizard.CreateUserStep.ContentTemplateContainer.FindControl("Question_DropDownList"); CreateUserWizard.Question = Questionddl.SelectedValue;
Read more »