欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp.net 遍歷repeater中的控件的幾種方式

 更新時(shí)間:2010年02月11日 15:01:30   作者:  
遍歷repeater中的控件的幾種方式小結(jié),需要的朋友可以參考下。
方式1:
復(fù)制代碼 代碼如下:

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

方式2:
復(fù)制代碼 代碼如下:

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:
復(fù)制代碼 代碼如下:

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

相關(guān)文章

最新評(píng)論