Areas in ASP.NET MVC provides an option for the developers to separate the large ASP.NET MVC Web Application in to module grouping.
When using the ActionLink in ASP.NET MVC , How do one mention the area names too ?
How to Specify the Area name in ActionLink in ASP.NET MVC ?
The Html.ActionLink has an parameter which accepts the Html Attributes , just specify the Area in it and include the new{} as shown below.
@Html.ActionLink("AbundantCode-Sourcecode samples", "DisplayAction", "AbundantCodeController", new { Area = "TestAreaName" }, new{})
Leave a Reply