摘要: 方式1: foreach (Control c in this.Repeater1.Controls) { HtmlInputCheckBox check = (HtmlInputCheckBox)c.FindControl("chkSelect"); if( check != null ) { check.Checked = true; } } 方式2: for (int i=0;i<this.... 阅读全文
posted @ 2007-07-05 12:22 tohen 阅读(564) 评论(0) 推荐(1) 编辑