请问如何遍历用户控件里的Checkbox?
我现在页面里动态生成用户控件,用户控件里有一个checkbox,请问怎样遍历全部用户控件的checkbox呢? --------------------编程问答-------------------- foreach(UserControl uc in page.controls){
foreach(Control c in uc)
{
if(c is CheckBox){}
}
} --------------------编程问答-------------------- foreach(Control uc in page.controls)
{
if(uc is UserControl)
{
foreach(Control c in uc.Controls)
{
if(c is CheckBox){}
}
}
} --------------------编程问答-------------------- 楼上的正解 --------------------编程问答-------------------- 顶 --------------------编程问答-------------------- 正解
补充:.NET技术 , C#