I am calling:
@Html.ActionLink(\"Register\", \"Register\", \"Account\", new {area=\"FrontEnd\"})
expecting
www.example.com
Try the below. I think you're missing an attribute null at the end
null
@Html.ActionLink("Register", "Register", "Account", new {area="FrontEnd"}, null)