×

遍例repaeter的checkbox

管理员 管理员 发表于2009-01-09 19:54:41 浏览2834 评论0

抢沙发发表评论

 方法一:

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

方法二、 

for (int i = 0; i < this.Repeater1.Items.Count; i++) {
  HtmlInputCheckBox check = (HtmlInputCheckBox) this.Repeater1.Items[i].FindControl("chkSelect");
  if (check != null) {
    check.Checked = true;
  }
}

方法三: 

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

群贤毕至

访客