I have a common navigation menu that I use throughout my mvc 5 application. The home link is defined as follows:
<a href="@Url.Action("Index", "Home")">
<i class="fa fa-laptop"></i>
<span class="nav-label">Home</span>
</a>
The problem is when I navigate to my admin "area", such as to [root]/admin/customers, if I click on the'Home' link it tries to goto "/admin/Home", versus Home in the root.
Question: Do I have to create 2 different menus in order to accomplish this?