HI,
I got a 2 level menu control where OGT is the parent and TPS Report is the child menu. I need change the menu item structure to the following
OGT -> Reports -> TPS Report
So OGT is the parent, Reports is the sub parent and TPS Report is the child menu item ,
Here is my code. Any help is greatly appreciated. Thanks,
<li>
<asp:Label runat="server" ID="lblOGT">OGT</asp:Label>
<asp:CollapsiblePanelExtender ID="cpeOGT" runat="server"
TargetControlID="pnlOGT"
CollapseControlID="lblOGT"
ExpandControlID="lblOGT" />
<asp:Panel runat="server" ID="pnlOGT" ScrollBars="None" style="overflow:hidden;">
<ul>
<li runat=&quo ...
Go to the complete details ...