Creating an ASP.NET Core MVC Web project in Visual Studio 2017 , I found that in the _Layout.cshtml a
has an attribute called asp-area
but it has no value:
<li><a asp-area="" asp-controller="Home" asp-action="Index">Home</a></li>
<li><a asp-area="" asp-controller="Home" asp-action="About">About</a></li>
<li><a asp-area="" asp-controller="Home" asp-action="Contact">Contact</a></li>
After all, what is the purpose of this attribute?