Some Considerations For MVC 6 Client Attributes
One of the new features coming is the addition of Tag Helpers, which are server-side attributes that get interpreted and translated into a client-side attributes. This transforms the previous approach we used to use of the following:
@Html.ActionLink("Text", "Action", "Controller") @* OR *@ <a href="@Url.Action("Action", "Controller")">Text</a>
Both of the above examples translate to the…
View On WordPress
















