Adding Navigation Controls

Open the master page in the designer. You see the availability of two buttons named Home, About, and Contact. These are menu items inside a Menu control that point to the associated web form. If you split the view so that the source code is visible, you can easily add menu items inside ul elements. The following XHTML code demonstrates how to add a new button pointing to the Orders.aspx page, after the existing buttons:

<div class="navbar-collapse collapse">    <ul class="nav navbar-nav">        <li><a runat="server" href="~/">Home</a></li>        <li><a runat="server" href="~/About">About</a></li>        <li><a runat="server" href="~/Contact">Contact</a></li>                    <li><a ...

Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.