I want to create unlimited accodrion panes at click of botton but my accodion has tab container which is not allowing me to have databind or Eval method.My requirement is I want to have an accordion pane which constist of tab container ajax .in that tab container   i have set of controls with textbox,dropdown etc.When i click on add button i want to add another accordion panes with tab container and its controls.I want to retain the values of previous accordion panes also.
My Asp Code is:
<asp:Accordion ID="Accordion1" runat="server" > <HeaderTemplate> <asp:Label ID="lblHNo" runat="server" Text='<%# string.Format("House Number : {0}", Container.DataItem)%>' /> </HeaderTemplate> <ContentTemplate>
<asp:TabContainer ID="tab" OnDataBinding="tab_DataBinding" runat="server" > <asp:TabPanel runat="server& ...

Go to the complete details ...