Creating a nested repeater control dynamically
I was wondering how we can create nested repeater control dynamically? I want to display Customers Sales Orders Quantity in a nested repeater control. Any help will be greatly appreciated. Thanks you can accomplish using this technique.... <asp:Repeater ID="rptOuter" runat="server" DataSourceID="odsOuter" onitemdatabound="rptOuter_ItemDataBound"> <ItemTemplate> <asp:Label ID="lblFirst" runat="server" Text='<%# Eval("first")%>'></asp:Label> <asp:Repeater ID="rptInner" runat="server" DataSourceID="odsInner"> <ItemTemplate> <asp:Label ID="lblSecond" runat="server" Text='<%# Eval("second")%>'><