Hi guys,
I'm having some trouble finding a control... that is because this control is on gridview witch is inside repeater (let's call it rpt1) and this repeater is inside another repeater (this one, rpt2).. I have an ItemCommand on rpt1 witch I need to catch a dropdownlist item value that is created as an item template inside the gridview... but just can't find it..
I have tryed something like this:
DropDownList ddlPersons = (DropDownList)e.item.FindControl("ddlPersons");
and also even this:
DropDownList ddlPersons = (DropDownList)this.Page.FindControl("ddlPersons");
But no luck with both ways.. does anyone knows how can I find my control?
Cheers