Finding DropdownList in GridView1_RowDataBound Event |
|
Answered By
Moderator1
on
12/18/2009 9:44:33 PM |
|
|
|
|
Hi,
For C#, you can try like this,
DropDownList ddlsd = (DropDownList)e.Row.FindControl("ddlsd");
Make sure the ID is same as you passed in FindControl method. |
|
|
|