62,263
社区成员
发帖
与我相关
我的任务
分享 protected void Page_Load(object sender, EventArgs e)
{
GetCheckBoxID(this.Page);
}
protected void GetCheckBoxID(Control control)
{
foreach (Control ctl in control.Controls)
{
if (ctl is CheckBox)
Response.Write(ctl.ID + "<br/>");
if (ctl.HasControls())
GetCheckBoxID(ctl);
}
}