遍历repeater中的控件的几种方式小结,需要的朋友可以参考下。
方式1:
代码如下:
foreach (Control c in this.Repeater1.Controls)
{
HtmlInputCheckBox check = (HtmlInputCheckBox)c.FindControl(“cbDelete1”);
if( check != null )
{
check.Checked = true;
}
}
{
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;
}
}
{
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;
}
}
{
HtmlInputCheckBox check = (HtmlInputCheckBox)item.FindControl(“cbDelete1”);
if( check != null )
{
check.Checked = true;
}
}
以上就是asp.net 遍历re来源gaodai#ma#com搞*代#码网peater中的控件的几种方式的详细内容,更多请关注gaodaima搞代码网其它相关文章!