Click here to Skip to main content
15,916,188 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want to create an usercontrol that show menu and sub menu as ajax accordion menu so any pane of accordion possible have 10 sub menu and...

Item#1

-Item#1-1

Item#2

-Item#2-1

-Item#2-2-1

-Item#2-2-2

-Item#2-2-2-1

-Item#2-2-2-2

-Item#2-2-3

Item#3

-Item#3-1

Thank's for help.
Posted

1 solution

<asp:Accordion ID="Accordion1" runat="server" FadeTransitions="True">
<Panes>
<asp:AccordionPane ID="AccordionPane1" runat="server">
<Header>Item#1<Header>
<Content><asp:AccordionPane ID="AccordionPane1" runat="server">
<Header>Item#1-1<Header>
<Content>abc</Content>
</asp:AccordionPane>
</Content>
</asp:AccordionPane>
</Panes>
</asp:Accordion>



try this one...
 
Share this answer
 
Comments
Hassan Sajedi 7-Mar-12 6:02am    
thank you for help but i want load data from database in code behind.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900