CreateUserWizard如何获取子控件?
比如要获取UserName那个文本框
CreateUserWizard1.FindControl( "UserName ") 找不到 怎办?
------解决方案--------------------------------------------------------
((TextBox)CreateUserWizard1.FindControl( "CreateUserStepContainer ").FindControl( "UserName ")).Text = "测试 ";