Can't find dropdown list in RowDataBound event
问题 I'm following this example http://www.codeproject.com/KB/webforms/Editable_GridView.aspx to build an editable GridView control. I have this code in my GridView: <asp:TemplateField HeaderText="Negócio"> <ItemTemplate> <asp:Label ID="lblNegocio" runat="server" Text='<%# Eval("Negocio") %>'></asp:Label> </ItemTemplate> <EditItemTemplate> <asp:DropDownList ID="ddlNegocio" runat="server" /> </EditItemTemplate> <FooterTemplate> <asp:DropDownList ID="ddlNewNegocio" runat="server" /> </FooterTemplate