3种方式遍历Repeater中的CheckBox全选

来源:互联网 发布:mac状态栏图标隐藏 编辑:程序博客网 时间:2024/05/20 05:27
 

方式1:

foreach (Control c in this.Repeater1.Controls)
 {
 HtmlInputCheckBox check
= (HtmlInputCheckBox)c.FindControl("chkSelect");
 if( check != null )
 {
 check.Checked
= true;
 }

 }

方式2:

for (int i=0;i<this.Repeater1.Items.Count;i++)
 {
 HtmlInputCheckBox check
= (HtmlInputCheckBox)this.Repeater1.Items[i].FindControl("chkSelect");
 if( check != null )
 {
 check.Checked
= true;
 }

 }

方式3:

foreach( RepeaterItem item in this.Repeater1.Items )
 {
 HtmlInputCheckBox check
= (HtmlInputCheckBox)item.FindControl("chkSelect");
 if( check != null )
 {
 check.Checked
= true;
 }

 }
原创粉丝点击