When I use Visual Studio 2013 to create a new MVC project, I notice that in the _Layout.cshtml file, there is a default link in the menu bar.
@Html.ActionLink("Application name", "Index", "Home",
new { area = "" }, new { @class = "navbar-brand" })
It all makes sense for me except the new { area = ""}
part. Intellisense says that this parameter is for route values.
I did a Google search for "Html.Actionlink route value area" (and other permutations), but was unable to find any simple definitions of what an "area" is.
Is there a simple explanation for what an "area" is? I have never used this attribute in any of my ActionLinks before.