I have an action link like:
<%=Html.ActionLink<ArticlesController>(x => x.Modify(item.id),"Modify") %>
This is working perfectly rendering the link like:
http://localhost:53574/Articles/Modify?idArticle=8
The same view is rendered in another page but this time the link is rendered with an empty href:
<a href="">Modify</a>
Could someone explain me what this is happening?