Here is my sample code
for (int i = 0; i< sdtable1.rows.count ; i++) {
System.Web.UI.Control ctr = SDTable1.Rows[i].Cells[0].Controls[i];
StudentDetailsChecklist.Items.Add(ctr.ID);
}
SDTable is my Html table, I want to fetch the control names not Id.
If I use the above code it fetches the ID of the controls, I need to fetch the name of the control.
Thanks Rajeshkumar