分不多,不过问题也不难
CreateUserWizard如何获取子控件?
比如要获取UserName那个文本框
CreateUserWizard1.FindControl( "UserName ") 找不到 怎办?
[解决办法]
((TextBox)CreateUserWizard1.FindControl( "CreateUserStepContainer ").FindControl( "UserName ")).Text = "测试 ";
发布时间: 2011-12-20 22:26:41 作者: rapoo
分不多,不过问题也不难
CreateUserWizard如何获取子控件?
比如要获取UserName那个文本框
CreateUserWizard1.FindControl( "UserName ") 找不到 怎办?
[解决办法]
((TextBox)CreateUserWizard1.FindControl( "CreateUserStepContainer ").FindControl( "UserName ")).Text = "测试 ";