I have a gridview in Default.aspx that contains drop-down lists, in Default.cs I can not use them, they do not appear to me, it's as if they were not. How do I call them?
The Estroctura in Default.aspx
<asp:GridView ID="gvDetails" runat="server" EmptyDataText="No se han encontrado registros para mostrar." AutoGenerateColumns="False" CssClass="auto-style5">
<Columns>
<HeaderTemplate>
Proyecto:
<asp:DropDownList ID="ddlProjgvw" runat="server"
OnSelectedIndexChanged = "Filtro" AutoPostBack = "true"
AppendDataBoundItems = "true">
<asp:ListItem Text = "ALL" Value = "ALL"></asp:ListItem>
</asp:DropDownList>
</HeaderTemplate>
<ItemTemplate>
<%# Eval("NameProj") %>
</ItemTemplate>
</Columns>
</asp:GridView>