show/hide this revision's text 2 Fixed error, must included a null parameter to get correct overload.

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:

  1. article.Title = "Title"
  2. article.aritcleID = 5
  3. 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 );

show/hide this revision's text 1

I think what you want is this:

Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID })

This uses the following method ActionLink signature:

public string ActionLink(string linkText, string actionName, string controllerName, object values)

This avoids hard-coding any routing logic into the link.