ASP.NET MVC - Problem passing parameters to the controller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T09:43:26Z http://stackoverflow.com/feeds/question/155864 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller 9 ASP.NET MVC - Problem passing parameters to the controller Odd 2008-10-01T01:38:11Z 2009-10-11T18:44:28Z <p>I have a controller with an action method as follows:</p> <pre><code>public class InventoryController : Controller { public ActionResult ViewStockNext(int firstItem) { // Do some stuff } } </code></pre> <p>And when I run it I get an error stating:</p> <blockquote> <p>The parameters dictionary does not contain a valid value of type 'System.Int32' for parameter 'firstItem'. To make a parameter optional its type should either be a reference type or a Nullable type.</p> </blockquote> <p>I had it working at one point and I decided to try the function without parameters. Finding out that the controller was not persistant I put the parameter back in, now it refuses to recognise the parameter when I call the method.</p> <p>I'm using this url syntax to call the action:</p> <blockquote> <p><a href="http://localhost:2316/Inventory/ViewStockNext/11" rel="nofollow">http://localhost:2316/Inventory/ViewStockNext/11</a></p> </blockquote> <p>Any ideas why I would get this error and what I need to do to fix it? I've tried adding another method that takes an integer to the class it it also fails with the same reason. I've tried adding one that takes a string, and the string is set to null. I've tried adding one without parameters and that works fine, but of course it won't suit my needs.</p> <p>Any help would be appreciated.</p> <p>Thanks Daniel</p> http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller/155895#155895 11 Answer by Jarrett Meyer for ASP.NET MVC - Problem passing parameters to the controller Jarrett Meyer 2008-10-01T01:46:32Z 2008-10-01T01:46:32Z <p>Your routing needs to be set up along the lines of <code>{controller}/{action}/{firstItem}</code>. If you left the routing as the default <code>{controller}/{action}/{id}</code> in your <code>global.asax.cs</code> file, then you will need to pass in <code>id</code>.</p> <pre><code>routes.MapRoute( "Inventory", "Inventory/{action}/{firstItem}", new { controller = "Inventory", action = "ListAll", firstItem = "" } ); </code></pre> <p>... or something close to that.</p> http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller/155902#155902 4 Answer by Graphain for ASP.NET MVC - Problem passing parameters to the controller Graphain 2008-10-01T01:50:33Z 2008-10-01T01:57:37Z <p>To rephrase <a href="http://stackoverflow.com/questions/155864/aspnet-mvc-problem-passing-parameters-to-the-controller#155895">Jarret Meyer's answer</a>, you need to change the parameter name to 'id' or add a route like this:</p> <pre><code>routes.MapRoute( "ViewStockNext", // Route name "Inventory/ViewStockNext/{firstItem}", // URL with parameters new { controller = "Inventory", action = "ViewStockNext" } // Parameter defaults ); </code></pre> <p>The reason is the default route only looks for actions with no parameter or a parameter called 'id'.</p> <p>Edit: Heh, nevermind Jarret added a route example after posting.</p> http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller/355023#355023 0 Answer by Robert Lamb for ASP.NET MVC - Problem passing parameters to the controller Robert Lamb 2008-12-10T03:41:53Z 2008-12-10T03:48:24Z <p>Or, you could try changing the parameter type to string, then convert the string to an interger in the method. I am new to MVC, but I believe you need nullable objects in your parameter list, how else will the controller indicate that no such parameter was provided? So...</p> <p>public ActionResult ViewNextItem(string id)...</p> http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller/477963#477963 3 Answer by Oskar Duveborn for ASP.NET MVC - Problem passing parameters to the controller Oskar Duveborn 2009-01-25T17:35:33Z 2009-01-25T17:35:33Z <p>public ActionResult ViewNextItem(int? id) makes the id integer a nullable type, no need for string&lt;->int conversions.</p> http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller/1551423#1551423 1 Answer by Felix for ASP.NET MVC - Problem passing parameters to the controller Felix 2009-10-11T18:44:28Z 2009-10-11T18:44:28Z <p>There is another way to accomplish that (described in more details in Stephen Walther's <a href="http://rads.stackoverflow.com/amzn/click/0672329980" rel="nofollow">Pager example</a></p> <p>Essentially, you create a link in the view:</p> <pre><code>Html.ActionLink("Next page", "Index", routeData) </code></pre> <p>In routeData you can specify name/value pairs (e.g., routeData["page"] = 5), and in the controller Index function corresponding parameters receive the value. That is,</p> <pre><code>public ViewResult Index(int? page) </code></pre> <p>will have <strong>page</strong> passed as 5. I have to admit, it's quite unusual that string ("page") automagically becomes a variable - but that's how MVC works in other languages as well...</p>