获取控件模板中的控件
获取Repeater中Footer/HeaderTemplate 中的控件
foreach (RepeaterItem item in rptEnquiries.Controls)
{
if (item.ItemType == ListItemType.Footer)
{
item.FindControl("btnSend1").Visible = true;
break;
}
}
CreateUserWizard获取子控件
{
if (item.ItemType == ListItemType.Footer)
{
item.FindControl("btnSend1").Visible = true;
break;
}
}
((TextBox)CreateUserWizard1.FindControl("CreateUserStepContainer").FindControl("UserName")).Text = "测试";