Posted on: 12/17/2013 11:21:25 PM | Views : 686

I need to loop through the Gridview to check for at least one checkbox and someone help me fix my codes.
 private bool Validate()         {             bool isValid = true;             int count = 0;             foreach (GridViewRow row in this.gvItemColor.Rows)             {                                 CheckBox ckboxDel = (CheckBox)row.FindControl("ckboxDel");                 if ((ckboxDel.Checked == true))        ...

Go to the complete details ...