1
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
2
{
3
if ((e.Row.RowState & DataControlRowState.Edit) == DataControlRowState.Edit)
4
{
5
CheckBoxList cbl = (CheckBoxList)e.Row.FindControl("CheckBoxList1");
6
cbl.Items.Add("总算找到你个CBL了!");
7
}
8
}
2
3
4
5
6
7
8