G
Guest
How do I access the fields in a CreateUserWizardControl such as the UserName
textbox etc.
I need to prepopulate some data before the administrator finishes creating a
user account.
I tried something like this:
CreateUserWizardStep cuws = CreateUserWizard1.CreateUserStep;
TextBox tbUserName = (TextBox)cuws.FindControl( "UserName" );
tbUserName.Text = "samalamadingdong";
Thanks for any suggestions!
textbox etc.
I need to prepopulate some data before the administrator finishes creating a
user account.
I tried something like this:
CreateUserWizardStep cuws = CreateUserWizard1.CreateUserStep;
TextBox tbUserName = (TextBox)cuws.FindControl( "UserName" );
tbUserName.Text = "samalamadingdong";
Thanks for any suggestions!