HTML.ActionLink method - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:54:07Zhttp://stackoverflow.com/feeds/question/200476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200476/html-actionlink-method7HTML.ActionLink methodNgu Soon Hui2008-10-14T09:16:58Z2009-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-2Answer by alexmac for HTML.ActionLink methodalexmac2008-10-14T09:55:56Z2008-10-14T09:55:56Z<p>Html.ActionLink(article.Title, article.ArcticleID, "Articles/Details")</p>
http://stackoverflow.com/questions/200476/html-actionlink-method/201206#201206-1Answer by Adhip Gupta for HTML.ActionLink methodAdhip Gupta2008-10-14T13:47:11Z2008-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#20134114Answer by Joseph Kingry for HTML.ActionLink methodJoseph Kingry2008-10-14T14:19:33Z2008-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> <a href="/Item/Login/5">Title</a>
</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#2016896Answer by Haacked for HTML.ActionLink methodHaacked2008-10-14T15:39:05Z2008-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#6259372Answer by Jeff Widmer for HTML.ActionLink methodJeff Widmer2009-03-09T11:57:52Z2009-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#9685170Answer by ajinkya for HTML.ActionLink methodajinkya2009-06-09T06:45:25Z2009-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><></p>
<p><%= 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>