Hey all, brand new to asp.net mvc and I am creating a fake social site (for learning purposes) by building off the stock mvc template... I added some views, etc. which all work fine. However, now I have added an mvc area called "Blog" and added the link to the main menu. Now if I click on any of the menu items, things work as expected - however when I click on the "Blog" menu item the view, etc show the blog page however the menus links for the other views have the /Blog/ in front of the URL now!? Not sure if I'm doing something wrong... here is my menu code:
<div id="menucontainer">
<ul id="menu">
@* @Html.ActionLink() Params = String Name, String Controller Name,
string Method (actionLink) Name *@
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("Mail", "Index", "Mail")</li>
<li>@Html.ActionLink("Search", "Index", "Search")</li>
<li>@Html.ActionLink("Dating", "Index", "Dating")</li>
<li>@Html.ActionLink("Groups", "Index", "Groups")</li>
<li>@Html.ActionLink("Forums", "Index", "Board")</li>
<li>@Html.ActionLink("Blog", "Index", "Blog")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
</ul>
</div>
If Blog is in a separate Area from the others, MVC expects links from that area to be within the same Area, so it appends the Area to your URL. If they are in a different Area, you need to invoke ActionLink with an "Area" route value. For instance, if "Dating" is in the "Social" area, you might use:
Here is the relevant discussion from What’s New in ASP.NET MVC 2: