How to get all the controls inside a specific cell in a GridView
问题 I am generating CheckBox controls dynamically inside a GridView. Now i need to validate if atleast one CheckBox is selected and also while saving data i need to iterate through all the controls inside the cell. Now the issue is i cannot do grdApproverDetails.Rows[i].FindControl('controlID') , because the ID's are dynamically generated based on the control count. As shown in this thread. This is how the GridView looks and Approver Name is the column inside which i need to find controls, if