HTML.ActionLink method - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:54:07Z http://stackoverflow.com/feeds/question/200476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/200476/html-actionlink-method 7 HTML.ActionLink method Ngu Soon Hui 2008-10-14T09:16:58Z 2009-06-09T06:45:25Z <p>Let's say I have a class</p> <pre><code>public class ItemController:Controller { public ActionResult Login(int id) { return View("Hi", id); } } </code></pre> <p>On a page that is not located at the Item folder, where ItemController resides, I want to create a link to the Login method. So which HTML.ActionLink method I should use and what parameters to pass in?</p> <p>Specifically, I am looking for the replacement of the method </p> <pre><code>Html.ActionLink(article.Title, new { controller = "Articles", action = "Details", id = article.ArticleID }) </code></pre> <p>that has been retired in the recent ASP.NET MVC incarnation. </p> http://stackoverflow.com/questions/200476/html-actionlink-method/200573#200573 -2 Answer by alexmac for HTML.ActionLink method alexmac 2008-10-14T09:55:56Z 2008-10-14T09:55:56Z <p>Html.ActionLink(article.Title, article.ArcticleID, "Articles/Details")</p> http://stackoverflow.com/questions/200476/html-actionlink-method/201206#201206 -1 Answer by Adhip Gupta for HTML.ActionLink method Adhip Gupta 2008-10-14T13:47:11Z 2008-10-14T13:47:11Z <pre><code>Html.ActionLink(article.Title, "Login/" + article.ArticleID, 'Item") </code></pre> http://stackoverflow.com/questions/200476/html-actionlink-method/201341#201341 14 Answer by Joseph Kingry for HTML.ActionLink method Joseph Kingry 2008-10-14T14:19:33Z 2008-10-21T13:44:47Z <p>I think what you want is this:</p> <pre><code>Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID }, null) </code></pre> <p>This uses the following method ActionLink signature:</p> <pre><code>public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object values, object htmlAttributes) </code></pre> <p>This avoids hard-coding any routing logic into the link.</p> <pre><code> &lt;a href="/Item/Login/5"&gt;Title&lt;/a&gt; </code></pre> <p>This will give you the following html output, assmuming:</p> <ol> <li>article.Title = "Title"</li> <li>article.aritcleID = 5</li> <li><p>you still have the following route defined</p> <p>routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); </p></li> </ol> http://stackoverflow.com/questions/200476/html-actionlink-method/201689#201689 6 Answer by Haacked for HTML.ActionLink method Haacked 2008-10-14T15:39:05Z 2008-10-14T15:39:05Z <p>You might want to look at the RouteLink method.That one lets you specify everything (except the link text and route name) via a dictionary.</p> http://stackoverflow.com/questions/200476/html-actionlink-method/625937#625937 2 Answer by Jeff Widmer for HTML.ActionLink method Jeff Widmer 2009-03-09T11:57:52Z 2009-03-09T11:57:52Z <p>I can't comment yet but wanted to add to Joseph Kingry's answer. He provided the solution but at first I couldn't get it to work either and got a result just like Adhip Gupta. And then I realized that the route has to exist in the first place and the parameters need to match the route exactly. So I had an id and then a text parameter for my route which also needed to be included too.</p> <p>Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID, title = article=Title }, null)</p> http://stackoverflow.com/questions/200476/html-actionlink-method/968517#968517 0 Answer by ajinkya for HTML.ActionLink method ajinkya 2009-06-09T06:45:25Z 2009-06-09T06:45:25Z <p>hey .. i'm having a problem in the same context .. i'm passing an object as a parameter in the Html.ActionLink method .. and on retrieving the object in the ActionResult definition the value becomes null..</p> <p>&lt;></p> <p>&lt;%= Html.ActionLink("Add To Cart", "AddToCart", new { Controller = "Cart", AddedProduct = ViewData.Model })%></p> <p>public class CartController : MasterController { public ActionResult AddToCart(Models.ProductModel AddedProduct) { List ShoppingCartList = new List(); ShoppingCartList.Add(AddedProduct); Session["ShoppingCart"] = ShoppingCartList; return View("ProductToCartSuccess", AddedProduct); } }</p>