I want to present a button with @Html.ActionLink but i need to have my application font in the text.
@Html.ActionLink
With this code:
@H
How about using Html.BeginForm with a FormMethod.Get / FormMethod.Post
@using (Html.BeginForm("Action", "Controller", new { Area = "" }, FormMethod.Get, htmlAttributes: new { title = "SomeTitle" })) { Create New }