Validating posted form data in the ASP.NET MVC framework - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T20:05:45Zhttp://stackoverflow.com/feeds/question/10300http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework9Validating posted form data in the ASP.NET MVC frameworkBen Millshttp://stackoverflow.com/users/2032008-08-13T19:45:33Z2008-09-19T13:50:59Z
<p>I've been playing around with the ASP.NET MVC Framework and the one thing that's really confusing me is how I'm meant to do server side validation of posted form data. I presume I don't post back to the same URL, but if I don't, how do I redisplay the form with the entered data and error messages? Also, where should the validation logic go? In the model or the controller? This seems to be one of the few areas where web forms are much stronger (I miss the validation controls).</p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/10311#103112Answer by Pete for Validating posted form data in the ASP.NET MVC frameworkPetehttp://stackoverflow.com/users/762008-08-13T19:59:49Z2008-08-13T19:59:49Z<p>Have you taken a look at this?
<a href="http://www.codeplex.com/MvcValidatorToolkit" rel="nofollow">http://www.codeplex.com/MvcValidatorToolkit</a></p>
<p>Quoted from the page</p>
<blockquote>
<p>The Validator Toolkit provides a set
of validators for the new ASP.NET MVC
framework to validate HTML forms on
the client and server-side using
validation sets.</p>
</blockquote>
<p>I'm afraid that someone more MVC-savvy than me would have to speak to where in the architecture you should put things.</p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/10322#103221Answer by Ben Mills for Validating posted form data in the ASP.NET MVC frameworkBen Millshttp://stackoverflow.com/users/2032008-08-13T20:15:38Z2008-08-13T20:15:38Z<p>I did take a look at the CodePlex project, but I wasn't impressed with what I saw (at the time). Maybe it's better now. I'll take another look.</p>
<p>Obviously, Jeff and the team must be validating the form data in StackOverflow. When I look at the HTML for the <a href="http://beta.stackoverflow.com/questions/ask" rel="nofollow" title="I/O management and disk scheduling">Ask a Question</a> page, it looks like the page posts back to itself. I wonder how they are implementing the validation.</p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/10364#103640Answer by IainMH for Validating posted form data in the ASP.NET MVC frameworkIainMHhttp://stackoverflow.com/users/11222008-08-13T20:58:00Z2008-08-13T21:08:53Z<p>I'm just learning the MVC framework too so I'm not sure how off this is, but from what I understand you would have a form on a View such as Edit.aspx. This form would then post to the controller to another action method such as Update() passing in the contents of the form that you set in Edit.aspx as parameters.</p>
<pre><code>Update(int id, string name, string foo)
</code></pre>
<p>You could do the validation within that method. If all is ok, </p>
<pre><code>return View("Item", yourObject)
</code></pre>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/10467#1046710Answer by Lance Fisher for Validating posted form data in the ASP.NET MVC frameworkLance Fisherhttp://stackoverflow.com/users/5712008-08-13T23:15:32Z2008-08-13T23:18:56Z<p>Here's an overview of the flow in MVC:</p>
<ol>
<li>/new - render your "New" view containing a form for the user to fill out</li>
<li>User fills out form and it is posted to /create</li>
<li>The post is routed to the Create action on your controller</li>
<li>In your action method, update the model with the data that was posted.</li>
<li>Your Model should validate itself.</li>
<li>Your Controller should read if the model is valid.</li>
<li>If the Model is valid, save it to your db. Redirect to /show to render the show View for your object.</li>
<li>If the Model is invalid, save the form values and error messages in the TempData, and redirect to the New action again. Fill your form fields with the data from TempData and show the error message(s).</li>
</ol>
<p>The validation frameworks will help you along in this process. Also, I think the ASP.NET MVC team is planning a validation framework for the next preview.</p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/12481#124811Answer by Ben Mills for Validating posted form data in the ASP.NET MVC frameworkBen Millshttp://stackoverflow.com/users/2032008-08-15T17:07:37Z2008-08-15T17:07:37Z<p>Lance, is the TempData bucket specific to that request? Obviously it would create problems if it was session based and multiple requests were trying to store data in the same bucket.</p>
<p>Also, is using TempData a hack? Is this the way other MVC frameworks solve the problem?</p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/22213#222130Answer by Artem Tikhomirov for Validating posted form data in the ASP.NET MVC frameworkArtem Tikhomirovhttp://stackoverflow.com/users/23132008-08-22T12:36:40Z2008-08-22T12:36:40Z<p>There is <a href="http://209.85.135.104/search?q=cache:EzaP2dgUM9cJ:hammett.castleproject.org/%3Fp%3D114+Castle.Components.Validator&hl=ru&ct=clnk&cd=2&gl=ru&client=firefox-a" rel="nofollow">Castle.Components.Validator</a> module in Castle project. It's very agile and powerfull. It generates validation rules based on model attributes (or any other source) and even able to generate JS validation using jQuery, Prototype Validation, fValidate and other.
Of course it's wise to abstract validator away behind IValidationEngine interface. </p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/45655#456553Answer by robDean for Validating posted form data in the ASP.NET MVC frameworkrobDeanhttp://stackoverflow.com/users/33962008-09-05T12:29:11Z2008-09-05T12:29:11Z<p>You might want to take a look at ScottGu's latest post for ASP.Net prev 5. It walks through a validation sample that is very interesting:</p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx</a></p>
http://stackoverflow.com/questions/10300/validating-posted-form-data-in-the-asp-net-mvc-framework/101966#1019663Answer by slude for Validating posted form data in the ASP.NET MVC frameworksludehttp://stackoverflow.com/users/188082008-09-19T13:50:59Z2008-09-19T13:50:59Z<p>As far as I can tell everyone is still trying to figure out the "standard" way of doing it. That said definitely check out Phil Haack and Scott Guthrie's latest posts on MVC and you'll find some interesting info on how they did. When I was just playing around with it for myself I created a ModelBinder for the LinqToSql data class that I had generated. You can check out this post to find out how to put together a basic ModelBinder:</p>
<p><a href="http://blog.maartenballiauw.be/post/2008/08/29/Using-the-ASPNET-MVC-ModelBinder-attribute.aspx" rel="nofollow">ASP.Net MVC Model Binder</a></p>
<p>The in your action if you had created a "Product" ModelBinder you would just declare the action like so:</p>
<p>public ActionResult New(Product prod)</p>
<p>And the model binder will take care of assigning posted data to the objects properties as long as you've built it right anyway.</p>
<p>After that within your GetValue() method you can implement whatever validation you want, whether using exception's, regex's, or whatever you can make a call like:</p>
<p>(ModelStateDictionary_name).AddModelError("form_element_id", "entered_value", "error_message");</p>
<p>Then you can just throw a <%= Html.ValidationSummary() %> in your view to display all your errors.</p>
<p>For client-side validation I just used jQuery. After you get a basic sample set up though you can start doing some interesting things combining all that with Partial Views and Ajax calls.</p>