I am calling:
@Html.ActionLink(\"Register\", \"Register\", \"Account\", new {area=\"FrontEnd\"})
expecting
www.example.com
You need to add null for the 5th parameter (html attributes)
null
@Html.ActionLink("Register", "Register", "Account", new {area="FrontEnd"}, null)