I have the following ActionLink in my view
<%= Html.ActionLink(\"LinkText\", \"Action\", \"Controller\"); %>
and it creates the follo
I explicitly set the action name as "Action/". Seems a little like a hack but it's a quick fix.
@Html.ActionLink("Link Name", "Action/", "Controller")