asp.net 遍历repeater asp.net 遍历repeater中的控件的几种方式
人气:0想了解asp.net 遍历repeater中的控件的几种方式的相关内容吗,在本文为您仔细讲解asp.net 遍历repeater的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:asp.net,repeater,下面大家一起来学习吧。
方式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;
}
}
加载全部内容