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
@Html.ActionLink("Register", "Register", "Account", new {area="FrontEnd"}, null)
You need to add null
for the 5th parameter (html attributes)
@Html.ActionLink("Register", "Register", "Account", new {area="FrontEnd"}, null)