ASP.NET MVC passing an ID in an ActionLink to the controller - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T23:41:36Zhttp://stackoverflow.com/feeds/question/316889http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316889/asp-net-mvc-passing-an-id-in-an-actionlink-to-the-controller4ASP.NET MVC passing an ID in an ActionLink to the controllerShahin2008-11-25T10:07:09Z2008-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><li>
<%= Html.ActionLink("Modify Villa", "Modify", "Villa", new { @id = "1" })%></li>
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#3169700Answer by Davide Vosti for ASP.NET MVC passing an ID in an ActionLink to the controllerDavide Vosti2008-11-25T10:48:59Z2008-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#31699612Answer by AnthonyWJones for ASP.NET MVC passing an ID in an ActionLink to the controllerAnthonyWJones2008-11-25T11:01:22Z2008-11-25T11:01:22Z<p>Doesn't look like you are using the correct overload of ActionLink. Try this:-</p>
<pre><code><%=Html.ActionLink("Modify Villa", "Modify", new {id = "1"})%>
</code></pre>
<p>This assumes your view is under the /Views/Villa folder. If not then I suspect you need:-</p>
<pre><code><%=Html.ActionLink("Modify Villa", "Modify", "Villa", new {id = "1"}, null)%>
</code></pre>