方式1

1 foreach (Control c in this.Repeater1.Controls)
2  {
3  HtmlInputCheckBox check = (HtmlInputCheckBox)c.FindControl("chkSelect");
4  if( check != null )
5  {
6  check.Checked = true;
7  }
8  }

方式2

1 for (int i=0;i<this.Repeater1.Items.Count;i++)
2  {
3  HtmlInputCheckBox check = (HtmlInputCheckBox)this.Repeater1.Items[i].FindControl("chkSelect");
4  if( check != null )
5  {
6  check.Checked = true;
7  }
8  }

方式3

1 foreach( RepeaterItem item in this.Repeater1.Items )
2  {
3  HtmlInputCheckBox check = (HtmlInputCheckBox)item.FindControl("chkSelect");
4  if( check != null )
5  {
6  check.Checked = true;
7  }
8  } 

相关文章:

  • 2022-01-02
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2021-10-23
  • 2021-11-04
  • 2021-09-08
猜你喜欢
  • 2022-02-06
  • 2022-12-23
  • 2021-09-30
相关资源
相似解决方案