Using VS 2010 and creating a new web solution the default template provides menu buttons across the top. How do you add sub menu items that will display below the main menu. Below are the main menus. Do not concern yourself with the names or the pages, but rather how to create sub menus under each.
Thank you in advance for looking at this.
Jim
Thank you in advance for looking at this.
Code:
<div class="clear hideSkiplink">
<asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false"
Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/Default.aspx" Text="Home" />
<asp:MenuItem NavigateUrl="~/About.aspx" Text="About" />
<asp:MenuItem NavigateUrl="~/About.aspx" Text="Help" />
</Items>
</asp:Menu>
</div>
</div>
Jim