ok. so my function:
Code:
CreateUserProfile(
((TextBox)CreateUserWizard1.FindControl("UserName")).Text.ToString(),
((TextBox)CreateUserWizard1.FindControl("txtFirstName")).Text.ToString(),
((TextBox)CreateUserWizard1.FindControl("txtLastName")).Text.ToString(),
((TextBox)CreateUserWizard1.FindControl("Password")).Text.ToString(),
((TextBox)CreateUserWizard1.FindControl("Email")).Text.ToString(),
((DropDownList)CreateUserWizard1.FindControl("ddlQuestion")).SelectedValue,
((TextBox)CreateUserWizard1.FindControl("txtAnswer")).Text.ToString());
is where the error is. im trying to get input from text boxes in the create user wizard control. i had a post like this a while back and used that as an example... idk what i did differently besides not using the ToString() at the end. im gona try it again without that but i dont think thats the error... any ideas?