Replace this:
Link
With
@Html.ActionLink("Link", "Action", "Controller")
That may auto encode the
, so you can try:
@Html.ActionLink(new MvcHtmlString("Link").ToHtmlString(), "Action", "Controller")
Even more simply put, you can use @Url.Action("Action", "Controller")
, in the link like:
Link