Hi
How to get the control values using foreach of radgrid in asp.net
here code, i have written like but its giving error
i want to identify form tamplate column control in radgrid.
How to get the control values using foreach of radgrid in asp.net
here code, i have written like but its giving error
i want to identify form tamplate column control in radgrid.
foreach
(GridEditFormItem item in RadGrid1.MasterTableView.ChildEditItems) {
if(item.ItemType==GridItemType.EditFormItem)
{
((
DropDownList)item.FindControl("drop2")).Items.Add(new ListItem("Ravi" + ((DropDownList)item.FindControl"drop1")).SelectedValue));
}}
plz help give me any suggetions.
thx advance