ASP.Net MVC - handling bad URL parameters - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T13:46:53Zhttp://stackoverflow.com/feeds/question/236349http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters8ASP.Net MVC - handling bad URL parametersAndrew2008-10-25T12:47:20Z2009-11-05T15:01:53Z
<p>What's the best way to handle a visitor constructing their own URL and replacing what we expect to be an ID with anything they like?</p>
<p>For example:</p>
<p><a href="http://stackoverflow.com/questions/236349">http://stackoverflow.com/questions/236349</a></p>
<p>But the user could just as easily replace the URL with:</p>
<p><a href="http://stackoverflow.com/questions/foo">http://stackoverflow.com/questions/foo</a></p>
<p>I've thought of making every Controller Function parameter a <code>String</code>, and using <code>Integer.TryParse()</code> on them - if that passes then I have an ID and can continue, otherwise I can redirect the user to an Unknown / not-found or index View.</p>
<p>Stack Overflow handles it nicely, and I'd like to too - how do you do it, or what would you suggest?</p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/236353#2363530Answer by Ovid for ASP.Net MVC - handling bad URL parametersOvid2008-10-25T12:50:55Z2008-10-25T12:50:55Z<p>The problem with that approach is that they still might pass an integer which doesn't map to a page. Just return a 404 if they do that, just as you would with "foo". It's not something to worry about unless you have clear security implications.</p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/236386#2363863Answer by mnour for ASP.Net MVC - handling bad URL parametersmnour2008-10-25T13:13:49Z2008-10-25T13:13:49Z<p>In ASP.NET MVC, you can define a filter implementing IActionFilter interface. You will be able to decorate your action with this attribute so that it will be executed on, before or after your action.</p>
<p>In your case, you will define it to be executed "before" your action. So that, you will be able to cancel it if there is an error in the passed parameters. The key benefit here that you only write the code which checking the passed paramaters once (i.e you define it in your filter) and use it wherever you want in your controller actions.</p>
<p>Read more about MVC filters here: <a href="http://haacked.com/archive/2008/08/14/aspnetmvc-filters.aspx" rel="nofollow">http://haacked.com/archive/2008/08/14/aspnetmvc-filters.aspx</a></p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/236405#2364052Answer by Duncan for ASP.Net MVC - handling bad URL parametersDuncan2008-10-25T13:30:06Z2008-10-25T13:30:06Z<p>You can specify constraints as regular expressions or define custom constraints. Have a look at this blog post for more information:</p>
<p><a href="http://weblogs.asp.net/stephenwalther/archive/2008/08/06/asp-net-mvc-tip-30-create-custom-route-constraints.aspx" rel="nofollow">http://weblogs.asp.net/stephenwalther/archive/2008/08/06/asp-net-mvc-tip-30-create-custom-route-constraints.aspx</a></p>
<p>You will still need to deal with the situation where id 43243 doesn't map to anything which could be dealt with as an IActionFilter or in your controller directly.</p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/237232#2372323Answer by Schotime for ASP.Net MVC - handling bad URL parametersSchotime2008-10-26T00:08:19Z2008-10-26T00:08:19Z<p>Here is some useful infromation that might help.
If you have a action method </p>
<pre><code>public ActionResult Edit(int? id)
{}
</code></pre>
<p>then if someone types in </p>
<pre><code>/Home/Edit/23
</code></pre>
<p>the parameter id will be 23.
however if someone types in </p>
<pre><code>/Home/Edit/Junk
</code></pre>
<p>then id will be null which is pretty cool. I thought it would throw a cast error or something. It means that if id is not a null value then it is a valid integer and can be passed to your services etc. for db interaction.</p>
<p>Hope this provides you with some info that I have found whilst testing.</p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/237390#2373906Answer by Dan Atkinson for ASP.Net MVC - handling bad URL parametersDan Atkinson2008-10-26T02:14:59Z2009-11-05T15:01:53Z<p>Here's an example of a route like yours, with a constraint on the number:</p>
<pre><code>routes.MapRoute(
"Question",
"questions/{questionID}",
new { controller = "StackOverflow", action = "Question" },
new { questionID = @"\d{1,}" }
);
</code></pre>
<p>Here we set the questionID to have at least one number. This will also block out any urls containing anything but an integer, and also prevents the need for a nullable int.</p>
<p>If the user enters the url "questions/foo", they will not hit the Question action, and fall through it, because it fails the parameter constraint. You can handle it further down in a catchall/default route if you want:</p>
<pre><code>routes.MapRoute(
"Catchall",
"{*catchall}",
new { controller = "Home", action = "Lost" }
);
</code></pre>
<p>This will send the user to the Lost action in the Home controller, where you may want to punish them for their sillyness. :-)</p>
<p>Please note that this should reside as the <strong>LAST</strong> route. Placing it further up the chain will mean that this will handle all others below it, given the lazy nature of routes in ASP.NET MVC.</p>