ASP.NET MVC passing an ID in an ActionLink to the controller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:41:36Z http://stackoverflow.com/feeds/question/316889 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316889/asp-net-mvc-passing-an-id-in-an-actionlink-to-the-controller 4 ASP.NET MVC passing an ID in an ActionLink to the controller Shahin 2008-11-25T10:07:09Z 2008-11-25T11:18:06Z <p>Hi, I can't see to retrieve an ID I'm sending in a html.ActionLink in my controller, here is what I'm trying to do</p> <pre><code>&lt;li&gt; &lt;%= Html.ActionLink("Modify Villa", "Modify", "Villa", new { @id = "1" })%&gt;&lt;/li&gt; public ActionResult Modify(string ID) { ViewData["Title"] =ID; return View(); } </code></pre> <p>That's what a tutorial I followed recommended, but it's not working, it's also putting ?Length=5 at the end of the URL!</p> <p>Thanks in advance!</p> <p>edit: here is the route I'm using, it's default </p> <pre><code> routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); </code></pre> <p>it appears someone has downvoted the two suggestions below but not posted their solution!</p> http://stackoverflow.com/questions/316889/asp-net-mvc-passing-an-id-in-an-actionlink-to-the-controller/316970#316970 0 Answer by Davide Vosti for ASP.NET MVC passing an ID in an ActionLink to the controller Davide Vosti 2008-11-25T10:48:59Z 2008-11-25T10:48:59Z <p>Don't put the @ before the id</p> <pre><code>new { id = "1" } </code></pre> <p>The framework "translate" it in ?Lenght when there is a mismatch in the parameter/route</p> http://stackoverflow.com/questions/316889/asp-net-mvc-passing-an-id-in-an-actionlink-to-the-controller/316996#316996 12 Answer by AnthonyWJones for ASP.NET MVC passing an ID in an ActionLink to the controller AnthonyWJones 2008-11-25T11:01:22Z 2008-11-25T11:01:22Z <p>Doesn't look like you are using the correct overload of ActionLink. Try this:-</p> <pre><code>&lt;%=Html.ActionLink("Modify Villa", "Modify", new {id = "1"})%&gt; </code></pre> <p>This assumes your view is under the /Views/Villa folder. If not then I suspect you need:-</p> <pre><code>&lt;%=Html.ActionLink("Modify Villa", "Modify", "Villa", new {id = "1"}, null)%&gt; </code></pre>