首页 > 编程 > .NET > 正文

asp.net 遍历repeater中的控件的几种方式

2024-07-10 13:26:44
字体:
来源:转载
供稿:网友
方式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;
}
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表