I have a gridview in a user control and it has two columns. One of them is a dropdown list and the other is a label containing the name of dropdown list.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="Id" DataSourceID="SqlDataSource1" EnableModelValidation="True">
<Columns>
<asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="DropDownList1" Width="250px" runat="server">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Now i have to loop through all the dropdown lists of usercontrol in the parent page having this user control.
I am using the gridview in parent page by declaring as property in user control as below. public GridView InputsGrid { get { return this.GridView1; } set { GridView1 = value; } }
but I am getting an error when doing the below in parent page
string ddl = columnMapping.InputsGrid.DataKeys[0].Value.ToString();
(here columnmapping is name of usercontrol). But this is working fine in code behind of user control.
can some one tell me a way to loop through all dropdowns using datakeys in parent page