Returning form, querystring, cookie values by priority in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:11:05Zhttp://stackoverflow.com/feeds/question/148906http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/148906/returning-form-querystring-cookie-values-by-priority-in-asp-net-mvc2Returning form, querystring, cookie values by priority in ASP.NET MVCstej2008-09-29T14:28:16Z2008-09-29T21:47:10Z
<p>I'm wondering why query string is preferred when getting values from user request. Where?
1) Code of System.Web.Mvc.DefaultModelBinder looks like this (only part of it):</p>
<pre><code>HttpRequestBase request = controllerContext.HttpContext.Request;
if (request != null)
{
if (request.QueryString != null)
{
values = request.QueryString.GetValues(modelName);
attemptedValue = request.QueryString[modelName];
}
if ((values == null) && (request.Form != null))
{
invariantCulture = CultureInfo.CurrentCulture;
values = request.Form.GetValues(modelName);
attemptedValue = request.Form[modelName];
}
}
</code></pre>
<p>2) If I have a method in controller with this signature:</p>
<pre><code>public ActionResult Save(int? x, string y) {...
</code></pre>
<p>the parameters (x, y) are bound to values from query string, not from form.
I would expect that values from Request.From have higher priority than from Request.QueryString.</p>
<p>Edit: I see that the second case is caused by the first one (DefaultModelBinder), am I right? </p>
<p>What's the motivation behind?</p>
http://stackoverflow.com/questions/148906/returning-form-querystring-cookie-values-by-priority-in-asp-net-mvc/150867#1508671Answer by Darryl Braaten for Returning form, querystring, cookie values by priority in ASP.NET MVCDarryl Braaten2008-09-29T21:47:10Z2008-09-29T21:47:10Z<p>Consistency probably. </p>
<p>The query string has been the default since the original ASP model. If you want to get data the form you have always needed to get the values from there explicitly if the same names are also on the querystring.</p>