Formlist,GridView,Datalist等控件中访问自定义控件的方法

Case:在Formlist1的editTemplate中定义了一个控件checkboxlist1,如何在C#中编程访问呢?
Ans.可以采用Formlist.FindControl的方法来处理:
      ((CheckBoxList)FormView1.FindControl("CheckBoxList1"))
其他情况也以此类推

你可能感兴趣的:(编程,C#)