I think what you want is this:
Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID }, null)
This uses the following method ActionLink signature:
public static string ActionLink(string linkTextActionLink(this HtmlHelper htmlHelper, string actionNamelinkText, string controllerNameactionName, object values, object htmlAttributes)
This avoids hard-coding any routing logic into the link.
<a href="/Item/Login/5">Title</a>
This will give you the following html output, assmuming:
- article.Title = "Title"
- article.aritcleID = 5
you still have the following route defined
routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults );
