现在的位置: 首页 > 综合 > 正文

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

2012年09月10日 ⁄ 综合 ⁄ 共 611字 ⁄ 字号 评论关闭

方式1:

foreach (Control c in this.Repeater1.Controls)
   
{
    HtmlInputCheckBox check 
= (HtmlInputCheckBox)c.FindControl("cbDelete1");
    
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("cbDelete1");
    
if( check != null )
    
{
     check.Checked 
= true;
    }

   }

方式3:

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

   }
 

抱歉!评论已关闭.