1. 程式人生 > >3種方式遍歷Repeater中的CheckBox全選

3種方式遍歷Repeater中的CheckBox全選

{
 HtmlInputCheckBox check
= (HtmlInputCheckBox)this.Repeater1.Items[i].FindControl("chkSelect");
 if( check != null )
 {
 check.Checked
= true;
 }

 }