I am having following action link:
<%= Html.ActionLink(\"Check this\", \"Edit\", \"test\", new { id = id }, new { style = \"display:bloc
I know this is kind of old question but.
In case the below code doesn't generate the .
<%= Html.ActionLink("Text", "Action", "Controller", new { param=value }, null)%>
I would advice checking whether you action has at least one [Route] attribute (I used [Route("/")] for example).
[Route]
[Route("/")]
Hope it helps.