ASP.NET MVC Preview 5 and Form Posting Scenarios

This past Thursday the ASP.NET MVC feature team published a new "Preview 5" release of the ASP.NET MVC framework.  You can download the new release here.  This "Preview 5" release works with both .NET 3.5 and the recently released .NET 3.5 SP1.  It can also now be used with both Visual Studio 2008 as well as (the free) Visual Web Developer 2008 Express SP1 edition (which now supports both class library and web application projects).

Preview 5 includes a bunch of new features and refinements (these build on the additions in "Preview 4").  You can read detailed "Preview 5" release notes that cover changes/additions here.  In this blog post I'm going to cover one of the biggest areas of focus with this release: form posting scenarios.  You can download a completed version of the application I'll build below here.

Basic Form Post with a Web MVC Pattern

Let's look at a simple form post scenario - adding a new product to a products database:

 

The page above is returned when a user navigates to the "/Products/Create" URL in our application.  The HTML form markup for this page looks like below:

The markup above is standard HTML.  We have two <input type="text"/> textboxes within a <form> element.  We then have an HTML submit button at the bottom of the form.  When pressed it will cause the form it is nested within to post the form inputs to the server.  The form will post the contents to the URL indicated by its "action" attribute - in this case "/Products/Save".

Using the previous "Preview 4" release of ASP.NET we might have implemented the above scenario using a ProductsController class like below that implements two action methods - "Create" and "Save":

The "Create" action method above is responsible for returning an html view that displays our initial empty form.  The "Save" action method then handles the scenario when the form is posted back to the server.  The ASP.NET MVC framework automatically maps the "ProductName" and "UnitPrice" form post values to the method parameters on the Save method with the same names.  The Save action then uses LINQ to SQL to create a new Product object, assigns its ProductName and UnitPrice values with the values posted by the end-user, and then attempts to save the new product in the database.  If the product is successfully saved, the user is redirected to a "/ProductsAdded" URL that will display a success message.  If there is an error we redisplay our "Create" html view again so that the user can fix the issue and retry.

We could then implement a "Create" HTML view template like below that would work with the above ProductsController to generate the appropriate HTML.  Note below that we are using the Html.TextBox helper methods to generate the <input type="text"/> elements for us (and automatically populate their value from the appropriate property in our Product model object that we passed to the view):

Form Post Improvements with Preview 5

The above code works with the previous "Preview 4" release, and continues to work fine with "Preview 5".  The "Preview 5" release, though, adds several additional features that will allow us to make this scenario even better. 

These new features include:

  • The ability to publish a single action URL and dispatch it differently depending on the HTTP Verb
  • Model Binders that allow rich parameter objects to be constructed from form input values and passed to action methods
  • Helper methods that enable incoming form input values to be mapped to existing model object instances within action methods
  • Improved support for handling input and validation errors (for example: automatically highlighting bad fields and preserving end-user entered form values when the form is redisplayed to the user)

I'll use the remainder of this blog post to drill into each of these scenarios.

[AcceptVerbs] and [ActionName] attributes

In our sample above we implemented our product add scenario across two action methods: "Create" and "Save".  One motivation for partitioning the implementation like this is that it makes our Controller code cleaner and easier to read.

The downside to using two actions in this scenario, though, is that we end up publishing two URLs from our site: "/Products/Create" and "/Products/Save".  This gets problematic in scenarios where we need to redisplay the HTML form because of an input error - since the URL of the redisplayed form in the error scenario will end up being "/Products/Save" instead of "/Products/Create" (because "Save" that was the URL the form was posted to).  If an end-user adds this redisplayed page to their browser favorites, or copy/pastes the URL and emails it to a friend, they will end up saving the wrong URL - and will likely have an error when they try and access it later.  Publishing two URLs can also cause problems with some search engines if your site is crawled and they attempt to automatically traverse your action attributes.

One way to work around these issues is to publish a single "/Products/Create" URL, and then have different server logic depending on whether it is a GET or POST request.  One common approach used to-do this with other web MVC frameworks is to simply have a giant if/else statement within the action method and branch accordingly:

The downside with the above approach, though, is that it can make the action implementation harder to read, as well as harder to test. 

ASP.NET MVC "Preview 5" now offers a better option to handle this scenario.  You can create overloaded implementations of action methods, and use a new [AcceptVerbs] attribute to have ASP.NET MVC filter how they are dispatched.  For example, below we can declare two Create action methods - one that will be called in GET scenarios, and one that will be called in POST scenarios:

This approach avoids the need for giant "if/else" statement within your action methods, and enables a cleaner structuring of your action logic.  It also eliminates the need to mock the Request object in order to test these two different scenarios.

You can also optionally now use a new [ActionName] attribute to allow the method name implementation on your controller class to be different than that from the published URL.  For example, if rather than having two overloaded Create methods in your controller you instead wanted to have the POST method be named "Save", you could apply the [ActionName] attribute to it like so:

Above we have the same controller method signature (Create and Save) that we had in our initial form post sample.  The difference, though, is that we are now publishing a single URL (/Products/Create) and are automatically varying the handling based on the incoming HTTP verb (and so are browser favorites and search engine friendly).

Model Binders

In our sample above the signature of the Controller action method that handles the form-post takes a String and a Decimal as method arguments.  The action method then creates a new Product object, assigns these input values to it, and then attempts to insert it into the database:

One of the new capabilities in "Preview 5" that can make this scenario cleaner is its "Model Binder" support.  Model Binders provide a way for complex types to be de-serialized from the incoming HTTP input, and passed to a Controller action method as arguments.  They also provide support for handling input exceptions, and make it easier to redisplay forms when errors occur (without requiring the end-user to have to re-enter all their data again - more on this later in this blog post). 

For example, using the model binder support we could re-factor the above action method to instead take a Product object as an argument like so:

This makes the code a little more terse and clean.  It also allows us to avoid having repetitive form-parsing code scattered across multiple controllers/actions (allowing us to maintain the DRY principle: "don't repeat yourself").

Registering Model Binders

Model Binders in ASP.NET MVC are classes that implement the IModelBinder interface, and can be used to help manage the binding of types to input parameters.  A model binder can be written to work against a specific object type, or can alternatively be used to handle a broad range of types. The IModelBinder interface allows you to unit test binders independent of the web-server or any specific controller implementation.

Model Binders can be registered at 4 different levels within an ASP.NET MVC application, which enables a great deal of flexibility in how you use them: 

1) ASP.NET MVC first looks for the presence of a model binder declared as a parameter attribute on an action method.  For example, we could indicate that we wanted to use a hypothetical "Bind" binder by annotating our product parameter using an attribute like below (note how we are indicating that only two properties should be bound using a parameter on the attribute):

Note: "Preview 5" doesn't have a built-in [Bind] attribute like above just yet (although we are considering adding it as a built-in feature of ASP.NET MVC in the future).  However all of the framework infrastructure necessary to implement a [Bind] attribute like above is now implemented in preview 5. The open source MVCContrib project also has a DataBind attribute like above that you can use today.

2) If no binder attribute is present on the action parameter, ASP.NET MVC then looks for the presence of a binder registered as an attribute on the type of the parameter being passed to the action method.  For example, we could register an explicit "ProductBinder" binder for our LINQ to SQL "Product" object by adding code like below to our Product partial class:

3) ASP.NET MVC also supports the ability to register binders at application startup using the ModelBinders.Binders collection.  This is useful when you want to use a type written by a third party (that you can't annotate) or if you don't want to add a binder attribute annotation on your model object directly.  The below code demonstrates how to register two type-specific binders at application startup in your global.asax:

4) In addition to registering type-specific global binders, you can use the ModelBinders.DefaultBinder property to register a default binder that will be used when a type-specific binder isn't found.  Included in the MVCFutures assembly (which is currently referenced by default with the mvc preview builds) is a ComplexModelBinder implementation that uses reflection to set properties based on incoming form post names/values.  You could register it to be used as the fallback for all complex types passed as Controller action arguments using the code below:

Note: the MVC team plans to tweak the IModelBinder interface further for the next drop (they recently discovered a few scenarios that necessitate a few changes).  So if you build a custom model binder with preview 5 expect to have to make a few tweaks when the next drop comes out (probably nothing too major - but just a heads up that we know a few arguments will change on its methods).

UpdateModel and TryUpdateModel Methods

The ModelBinder support above is great for scenarios where you want to instantiate new objects and pass them in as arguments to a controller action method.  There are also scenarios, though, when you want to be able to bind input values to existing object instances that you own retrieving/creating yourself within the action method.  For example, when enabling an edit scenario for an existing product in the database, you might want to use an ORM to retrieve an existing product instance from the database first within your action method, then bind the new input values to the retrieved product instance, and then save the changes back to the database.

"Preview 5" adds two new methods on the Controller base class to help enable this - UpdateModel() and TryUpdateModel().  Both allow you to pass in an existing object instance as the first argument, and then as a second argument you pass in a security white-list of properties you want to update on them using the form post values.  For example, below I'm retrieving a Product object using LINQ to SQL, and then using the UpdateModel method to update the product's name and price properties with form data.

The UpdateModel methods will attempt to update all of the properties you list (even if there is an error on an early one in the list).  If it encounters an error for a property (for example: you entered bogus string data for a UnitPrice property which is of type Decimal), it will store the exception object raised as well the original form posted value in a new "ModelState" collection added with "Preview 5".  We'll cover this new ModelState collection in a little bit - but in a nutshell it provides an easy way for us to redisplay forms with the user-entered values automatically populated for them to fix when there is an error.

After attempting to update all of the indicated properties, the UpdateModel method will raise an exception if any of them failed.  The TryUpdateModel method works the same way - except that instead of raising an exception it will return a boolean true/false value which indicates whether there were any errors.  You can choose whichever method works best with your error handling preferences.

Product Edit Example

To see an example of using the UpdateModel method in use, let's implement a simple product editing form.  We'll use a URL format of /Products/Edit/{ProductId} to indicate which product we want to edit.  For example, below the URL is /Products/Edit/4 - which means we are going to edit the product whose ProductId is 4:

Users can change the product name or unit price, and then click the Save button.  When they do our post action method will update the database and then show the user a "Product Updated!" message if it was successful:

We can implement the above functionality using the two Controller actions methods below.  Notice how we are using the [AcceptVerbs] attribute to differentiate the Edit action that displays the initial form, and the one that handles the form post submission:

Our POST action method above uses LINQ to SQL to retrieve an instance of the product object we are editing from the database, then uses UpdateModel to attempt to update the product's ProductName and UnitPrice values using the form post values.  It then calls SubmitChanges() on the LINQ to SQL datacontext to save the updates back to the database.  If that was successful, we then store a success message string in the TempData collection and redirect the user back to the GET action method using a client-side redirect (which will cause the newly saved product to be redisplayed - along with our TempData message string indicating it was updated).  If there is an error either with the form posted values, or with updating the database, an exception will be raised and caught in our catch block - and we will redisplay the form view again to the user for them to fix.

You might wonder - what is up with this redirect when we are successful?  Why not just redisplay the form again and show the success message?  The reason for the client-redirect is to ensure that if the user hits the refresh button after successfully pressing the save button, they don't resubmit the form again and get hit with a browser prompt like this:

Doing the redirect back to the GET version of the action method ensures that a user hitting refresh will simply reload the page again and not post back.  This approach is called the "Post/Redirect/Get" (aka PRG) pattern.  Tim Barcz has a nice article here that talks about this more with ASP.NET MVC.

The above two controller action methods are all we need to implement in order to handle editing and updating a Product object.  Below is the "Edit" view to go with the above Controller:

Useful Tip: In the past once you started added parameters to URLs (for example: /Products/Edit/4) you had to write code in your view to update the form's action attribute to include the parameters in the post URL.  "Preview 5" includes a Html.Form() helper method that can make this easier.  Html.Form() has many overloaded versions that allow you to specify a variety of parameter options.  A new overloaded Html.Form() method that takes with no parameters has been added that will now output the same URL as the current request. 

For example, if the incoming URL to the Controller that rendered the above view was "/Products/Edit/5", calling Html.Form() like above would automatically output <form action="/Products/Edit/5" method="post"> as the markup output.  If the incoming URL to the Controller that rendered the above view was "/Products/Edit/55", calling Html.Form() like above would automatically output <form action="/Products/Edit/55" method="post"> as the markup output.  This provides a nifty way to avoid having to write any custom code yourself to construct the URL or indicate parameters.

Unit Testing and UpdateModel

In this week's Preview 5 drop the UpdateModel methods always work against the Request object's Form post collection to retrieve values.  This means that to test the above form post action method you'd need to mock the request object in your unit test. 

With the next MVC drop we'll also add an overloaded UpdateModel method that allows you to pass in your own collection of values to use instead.  For example, we would be able to use the new FormCollection type in preview 5 (which has a ModelBuilder that automatically populates it with all form post values) and pass it to the UpdateModel method as an argument like so:

Using an approach like above will allow us to unit test our form-post scenario without having to use any mocking. Below is an example unit test we could write that tests that a POST scenario successfully updates with new values and redirects back to the GET version of our action method.  Notice that we do not need to mock anything (nor do we have to rely on any special helper methods) in order to unit test all the functionality in our controller:

Handling Error Scenarios - Redisplaying Forms with Error Messages

One of the important things to take care of when handling form post scenarios are error conditions.  These includes cases where an end-user posts incorrect input (for example: a string instead of a number for a Decimal unit-price), as well as cases where the input format is valid, but the business rules behind the application disallow something from being created/updated/saved (for example: making a new order for a discontinued product).

If a user makes a mistake when filling out a form, the form should be redisplayed with informative error messages that guide them towards fixing it.  The form should also preserve the input data the user originally entered - so that they don't have to refill this manually.  This process should repeat as many times as necessary until the form successfully completes.

Basic Form Entry Error Handling and Input Validation with ASP.NET MVC

In our product edit sample above we haven't written much error handling code in either our Controller or our View.  Our Edit post action simply wraps a try/catch error handling block around the UpdateModel() input mapping call, as well as the database save SubmitChanges() call.  If an error occurs, the controller saves an output message in the TempData collection, and then returns our edit view to be redisplayed:

With earlier preview releases of ASP.NET MVC the above code wouldn't be enough to deliver a good end-user experience (since it wouldn't highlight the problem, nor preserve user input if there was an error).

However, with "Preview 5" you'll find that you now get a decent end-user error experience out of the box with just the above code.  Specifically, you'll find that when our edit view is redisplayed because of an input error it now highlights all input controls that have problems, and preserves their input for us to fix:

How, you might ask, did the Unit Price textbox highlight itself in red and know to output the originally entered user value?

"Preview 5" introduces a new "ModelState" collection that is passed as part of the "ViewData" sent from the Controller to the View when it renders.  The ModelState collection provides a way for Controllers to indicate that an error exists with a model object or model property being passed to the View, and allows a human friendly error message to be specified that describes the issue, as well as the original value entered by the end-user.

Developers can explicitly write code to add items into the ModelState collection within their Controller actions.  ASP.NET MVC's ModelBinders and UpdateModel() helper methods also automatically populate this collection by default when they encounter input errors.  Because we were using the UpdateModel() helper method in our Edit action above, when it failed in its attempt to map the UnitPrice TextBox's "gfgff23.02" input to the Product.UnitPrice property (which is of type Decimal) it automatically added an entry to the ModelState collection.

Html helper methods inside the View by default now check the ModelState collection when rendering output.  If an error for an item they are rendering exists, they will now render the originally entered user value as well as a CSS error class to the HTML input element.  For example, for our "Edit" View above we are using the Html.TextBox() helper method to render the UnitPrice of our Product object:

When the view was rendered during the error scenario above the Html.TextBox() method checked the ViewData.ModelState collection to see if there were any issues with the "UnitPrice" property of our Product object, and when it saw that there was rendered the originally entered user input ("gfgff23.02") and added a css class to the <input type="textbox"/> it output:

You can customize the appearance of the the error css classes to look however you want.  The default CSS error rule for input elements in the stylesheet created in new ASP.NET MVC projects looks like below:

Adding Additional Validation Messages

The built-in HTML form helpers provide basic visual identification of input fields with issues.  Let's now add some more descriptive error messages to the page as well.  To-do this we can use the new Html.ValidationMessage() helper method in "Preview 5".  This method will output the error message in the ModelState collection that is associated with a given Model or Model property.

For example: we could update our view to use the Html.ValidationMessage() helper to the right of the textboxes like so:

Now when the page renders with an error, an error message will be displayed next to the fields with problems:

There is an overloaded version of the Html.ValidationMessage() method that takes a second parameter that allows the view to specify an alternative text to display:

One common use case is to output the * character next to the input fields, and then add the new Html.ValidationSummary() helper method (new in "Preview 5") near the top of the page to list all the error messages:

The Html.ValidationSummary() helper method will then render a <ul><li></ul> list of all the error messages our ModelState collection, and a * and red border will indicate each input element that has a problem:

Note that we haven't had to change our ProductsController class at all to achieve this.

Supporting Business Rules Validation

Supporting input validation scenarios like above is useful, but rarely sufficient for most applications.  In most scenarios you also want to be able to enforce business rules, and have your application UI cleanly integrate with them.

ASP.NET MVC supports any data layer abstraction (both ORM and non-ORM based), and allows you to structure your domain model, as well as associated rules/constraints, however you want.  Capabilities like Model Binders, the UpdateModel helper method, and all of the error display and validation message support are explicitly designed so that you can use whatever preferred data access story you want within your MVC applications (including LINQ to SQL, LINQ to Entities, NHibernate, SubSonic, CSLA.NET, LLBLGen Pro, WilsonORMapper, DataSets, ActiveRecord, and any other).

Adding Business Rules to a LINQ to SQL Entity

In the sample above I've been using LINQ to SQL to define my Product entity and perform my data access.  So far, the only level of domain rules/validation that I am using on my Product entity are those inferred by LINQ to SQL from the SQL Server metadata (nulls, data type and length, etc).  This will catch scenarios like above (where we are trying to assign bogus input to a Decimal).  However, they won't be able to model business issues that can't be easily declared using SQL metadata.  For example: disallowing the reorder level of a product to be greater than zero if it has been discontinued, or disallowing a product to be sold for less than what our supplier price is, etc.  For scenarios like these we need to add code to our model to express and integrate these business rules.

The wrong place to add this business rule logic is in the UI layer of our application.  Adding them there is bad for many reasons.  Among others it will almost certainly lead to duplicated code - since you'll end up copying the rules around from UI to UI and from form to form.  In addition to being time-consuming, there is an excellent chance doing so will lead to bugs when you change your business rule logic, and you forget to update it everywhere. 

A much better place to incorporate these business rules is at your model or domain level.  That way they can be used and applied regardless of what type of UI or form or service works with it.  Changes to the rules can be made once, and picked up everywhere without having to duplicate any logic.

There are several patterns and approaches we could take to integrate richer business rules to the Product model object we've been using above: we could define the rules within the object, or external from the object.  We could use declarative rules, a re-usable rules engine framework, or imperative code.  The key point is that ASP.NET MVC allows us to use any or all of these approaches (there aren't a bunch of features that require you to always do it one way - you instead have the flexibility to reflect them however you want, and the MVC features are extensible enough to integrate with almost anything).

For this blog post I'm going to use a relatively simple rules approach.  First I'm going to define a "RuleViolation" class like below that we can use to capture information about a business rule that is being violated within our model.  This class will expose an ErrorMessage string with details about the error, as well as expose the primary property name and property value associated with it that is causing the violation:

(note: For simplicity sake I'm only going to store only one property - in more complex applications this might instead be a list so that multiple properties could be specified).

I will then define an IRuleEntity interface that has a single method - GetRuleViolations() - which returns back a list of all current business rule violations with that entity:

I can then have my Product class implement this interface.  To keep the sample simple I'm embedding the rule definition and evaluation logic inside the method.  There are better patterns that you can use to enable reusable rules, as well as to handle more complex rules. If this sample grew I'd refactor the method so that the rules and their evaluation where defined elsewhere, but for now to keep this simple we'll just evaluate three business rules below like so:

 

Our application can now query the Product (or any other IRuleEntity) instance to check its current validation status, as well as retrieve back RuleViolation objects that can be used to help present UI that can guide an end-user of the application to help fix them.  It also allows us to easily unit test our business rules independent of the application UI.

For this particular sample I am going to choose to enforce that our Product object is never saved in the database in an invalid state (meaning all RuleViolations must be fixed before the Product object can be saved in the database).  We can do this with LINQ to SQL by adding an OnValidate partial method to the Product partial class.  This method will get called automatically by LINQ to SQL any time database persistence occurs.  Below I'm calling the GetRuleViolations() method we added above, and am raising an exception if there are unresolved errors.  This will abort the transaction and prevent the database from being updated:

And now in addition to having a friendly helper method that allows us to retrieve RuleViolations from a Product, we have enforcement that those RuleViolations must be fixed before our database is ever updated.

Integrating the above Rules into our ASP.NET MVC UI

Once we've implemented our business rules, and exposed our RuleViolations like above, it will be relatively easy to integrate it into our ASP.NET MVC sample.

Because we added the OnValidate partial method to our Product class, calling northwind.SubmitChanges() will raise an exception if there are any business rule validation issues with a Product object that we are trying to save.  This exception will abort any database transactions, and will be caught in our catch block below:

The one extra line of code we'll then add to our error catch block is some logic to call a UpdateModelStateWithViolations() helper method defined below.  This method retrieves a list of all rule violations from an entity, and then updates a ModelState collection with appropriate model errors (including references to the properties on our entity object that caused them):

Once we do this, we can re-run our application.  Now, in addition to seeing input format related error messages, ASP.NET MVC's validation helpers will also display our business rule violations as well. 

For example, we could set the unit price to be less than a $1, and try to set the Reorder level to be -1 (both values are legal from an input format perspective - but both violate our business rules).  When we do this and hit save we'll see the errors show up in our Html.ValidationSummary() list, and the corresponding textboxes will be flagged:

Our business rules can span multiple Product properties.  For example: you might have noticed above that I added a rule that said that the reorder level can't be greater than zero if the product is discontinued:

The only changes we needed to make to our "Edit" view template throughout this entire business rules process has been to add two more Product properties (Reorder and Discontinued) to the file:

Now we can add any number of additional business validation rules we want to our Product entity, and we do not need to update the Edit view nor the ProductsController in order to have our UI support them.

We can also unit-test our model and business rules separately from our Controller and View.  We can unit-test our URL routing separately from our Controller, Views and Models.  And we can unit test our Controller separately from our Views.  All of the scenarios shown in this blog post will support unit testing without requiring any mocking or stubbing to be used.  The end result are applications that are easily testable, and which can support a nice TDD workflow.

Summary

This post has provided a quick look at how form post scenarios work with ASP.NET MVC Preview 5.  Hopefully after reading it you have a better sense of how you handle form and input entry scenarios using a MVC model.  You can download a completed C# version of the application I built above here.  I will post a VB version a little later this week (it is unfortunately 4:30am while I'm typing this and I need to hop on a plane in a few short hours and have not started packing yet).

Important: If you don't like the MVC model or don't find it natural to your style of development, you definitely don't have to use it.  It is a totally optional offering - and does not replace the existing WebForms model.  Both WebForms and MVC will be fully supported and enhanced going forward (the next release of ASP.NET WebForms will add richer URL routing features, better HTML markup/client-side ID/CSS support, and more).  So if after reading the above post you think "hmm - that doesn't feel natural to me", then both don't worry, and don't feel like you should or need to use it (you don't). 

In my next post on MVC I'll cover how to integrate AJAX into your ASP.NET MVC applications. 

Hope this helps,

Scott

Published Tuesday, September 02, 2008 5:22 AM by ScottGu
Filed under: , , ,

Comments

# Dew Drop - September 2, 2008 | Alvin Ashcraft's Morning Dew

Tuesday, September 02, 2008 8:46 AM by Dew Drop - September 2, 2008 | Alvin Ashcraft's Morning Dew

Pingback from  Dew Drop - September 2, 2008 | Alvin Ashcraft's Morning Dew

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 8:47 AM by ChrisW

Hey Scott

Been checking here every couple of days and happy to see your back and well.

Another great article as always.  I have been teaching myself MVC based on your blog posts.  Is there any other resources you would recommend?

Kind Regards

Chris

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 8:51 AM by Boguslaw Faja

Scott, yours posts are like a honey.. And I'm the hungriest bear..

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 8:53 AM by simonech

Thank you Scott for explaining all the new features of P5.

# ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 8:57 AM by DotNetKicks.com

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 9:04 AM by Tobin Harris

Hope you had a great vacation Scott! This looks like an awesome set of changes :) The HTTP Verbs and the auto binding to entities are very welcome additions IMHO. The approach to validations is almost identical to what I'm working with now (hand rolled).

On a slight tangent, I have seen most of the features mentioned above in Ruby on Rails (in some form or another). Are there any existing/upcoming ASP.MVC features that can't be found in Rails? Any features that you think are particularly cool? I hope that doesn't come across the wrong way, I'm just interested in the product vision.

Cheers for the update. I'm really enjoying ASP.NET MVC, and look forward to getting hold of Preview 5 ASAP :)

# ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 9:14 AM by ASP.NET MVC Preview 5 and Form Posting Scenarios

Pingback from  ASP.NET MVC Preview 5 and Form Posting Scenarios

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 9:15 AM by Jeffrey Palermo

Looks like it's all coming together.  The built-in validation is nice and extensible.  The action argument binding is great, and I missed it from MonoRail.  I can't wait for subcontroller support.  Current project is really asking for subcontrollers.  Overall, great job everyone!

# ASP.NET MVC Archived Blog Posts, Page 1

Tuesday, September 02, 2008 9:18 AM by ASP.NET MVC Archived Blog Posts, Page 1

Pingback from  ASP.NET MVC Archived Blog Posts, Page 1

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 9:47 AM by aliry

When it will be realesed?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:17 AM by SteveSanderson

Thanks Scott for this detailed post. It's very helpful.

I'm curious about this whole business of having multiple action method overloads that do totally different things depending on whether they're invoked with a GET or with a POST. You wouldn't abuse method overloads like that in normal C# code (C# method overloads typically achieve the same result, just using different parameters), so why would you use method overloads like that in ASP.NET MVC apps?

Also, I notice that for this to work, the two overloads need to have different signatures to satisfy the C# compiler, even when for the purposes of your MVC app there may be absolutely no reason to add artificial extra method params to the "POST" overload. A bit messy.

It's more awkward still if your C# methods are named differently but you fudge them into a single logical action using the [ActionName] attribute, as in your Create()/Save() example. Why deliberately have a naming clash? Why force yourself and colleagues to remember that certain action methods don't really have the same name that Visual Studio thinks they do?  Is this really the recommended practise, and if so, what is the benefit of doing this?

I fully appreciate that Preview 5 still supports the more conventional approach of having different action method names to do different things (e.g., Create() and Save()), and by default action methods have the same name as their C# implementation. Encouraging developers to preserve this simplicity seems hugely preferable at first glance.

Nice work with the ModelState and model binder stuff though, that looks great!

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:21 AM by Brennan Falkner

Does the moving of the ActionLink and Form methods that take Expressions to Microsoft.Web.Mvc signify that they'll be removed in the future?  Because..  I like those.

# ASP.NET MVC Preview 5 and Form Posting Scenarios at { null != Steve }

Pingback from  ASP.NET MVC Preview 5 and Form Posting Scenarios at { null != Steve }

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:31 AM by Joe Fiorini

Curious why you guys departed from the Request.DeserializeTo(...) approach you were using with BindingHelperExtensions.UpdateFrom(...).  I liked the convention-over-configuration approach of not having to create a  ModelBinder and instead naming my form fields modelname.attribute.  Is this still usable?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:32 AM by Steve

UpdateModel question:

Many times I have a domain object that I'm using a form to only partially update a few of it's properties.

ie.

Let's say I have a Customer object with an Address

I create a control that handles updating the customer's Address.

Street1

Street2

City, State, PostalCode

I want to bind just those 5 properties to the Customer's Address object.

Another senario - I have a Customer object and a form that only updates 2 properties - ie. Name and PhoneNumber.  So it's like a 'partial update' - is this possible without much code?

ie. I would hope to just pass the UpdateModel the Customer object and the two fields and then save it

public ActionResult SaveCustomer(Customer c)

{

  UpdateModel(c, new[]{"Name", "TelephoneNumber"});

}

possible?

Thanks

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:38 AM by Joe Fiorini

Also, I like the focus on RESTful controllers that use the HTTP method to determine what action to fire, but I'm curious why the same thing couldn't be accomplished in the routes using route constraints? Then we wouldn't need the extra ceremony of attributes in the controller. Method overloads are pretty clear with or without specifying the HTTP verb in an attribute.  Also, by using routes for specifying HTTP verbs instead of the controller, we could then use REST in a very elegant way similar to Rails, in which GET on /product would go to one action, but POST on /product would go to another.

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:38 AM by Daniel

No love for IDataErrorInfo?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:41 AM by Bobo Smith

There still doesn't seem to be a compelling client side validation story short of duplicating validation logic in your javascript library of choice...  :(

# ASP.NET MVC Preview 5 Release at freddes.se

Tuesday, September 02, 2008 11:34 AM by ASP.NET MVC Preview 5 Release at freddes.se

Pingback from  ASP.NET MVC Preview 5 Release at freddes.se

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 11:48 AM by Shawn Wildermuth

Hope your paternity leave was great...

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 11:59 AM by SteveSanderson

I do see some of the appeal of what you're doing, by the way - I'm just working through the questions at the same time.

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 12:05 PM by Mads

Hi Scott,

Great post as usual.

All this stuff looks really cool, but I've noticed that you've made sure the names of the textboxes match the names of the properties. Same thing for the ValidationMessage helper-function.

Product.ProductName is put in a textbox called "ProductName". The name passed in the ValidationMessage is also "ProductName".

Does these things have to match up in order to use the ModelState like you do?

Or can I have something like: Product.Name and a textbox called "name-of-the-product" and still get all the sweet stuff?

Sorry if I've missed something obvious in your post (there was a lot of information to process ;)

- Mads

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 12:18 PM by jwheeler79

The separate strategies for binding detached and attached models via UpdateForm and IModelBinder respectively, is better, but is still going to be problematic. In practice, what is going to happen is people are going to run into edge cases, and they are going to override each one each time leading to an explosion of these methods/classes that have to be maintained in tandem. ComplexModelBinder still has a ways to go.

Also, you should consider the way the Spring Web MVC's SimpleFormController handles the two cases (detached and attached). There, you override formBackingObject, which is called before binding occurs. In the 'new' case, you just return an new instance, in the 'edit' case, you load one from the db. This is nice because you are only varying the object loading strategy as opposed to varying both the object loading strategy and the binding strategy. I realize this could be more challenging to implement in a multi action scenario like we have for IController.

Here's an idea, how about you can create two methods in your icontroller, loadNew() and loadExisting() or something like that. Then, get rid of the UpdateForm, and just use IModelBinder for the param-type binding, but change the GetValue signature so it takes in an object, instead of Type. Before running GetValue, call one of these methods to get the model to pass to GetValue. Then we don't have to vary the binding strategy.

Also, If you implement recursive binding of collection and there objects, and a way to register type converters for a path (i.e. RegisterTypeConverter('User.Addresses.CreatedDate', new DateTimeConverter()) or whatever, that would be great.

Thanks!

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 12:37 PM by Jukka-Pekka Keisala

Wow, I love MVC it is just what .NET needs the web developer model for web developers.

I was driven to .NET back in 1.0 because of the power of XML/XSLT but ASP.NET was never my cup of tea... (I have have never developed Windows App but I have been building websites since 96, so whole one form per page and postbacks just feels strange).

I would love to see some concepts of using XSLT as templating language for MVC.

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 12:40 PM by Sefyroth

Hello Scott, thanks for the post.

I'm currently porting the web application we have from preview 4 to preview 5.

I was curious about internationalization / localization / globalization, whichever you prefer. I liked asp.net's approach with global and local resources. I know how to access global with the vs-generated designer files, but I'd like to have local resources for certain views and so on. Is there already something with asp.net MVC for that or is that something that is planned for later?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 1:21 PM by Steve

By the way, what happened to the CheckBoxBuilder ?

Not only is it gone, but there is still not a CheckBoxList

Without the values - retrieving a list by value to determine which is selected is problematic isn't it

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 1:31 PM by Webdiyer

太精彩了,学到不少,非常感谢!!

Great post! I've learned a lot from your blog, Thank you very much!

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 1:41 PM by Mike

Scott, great post, what a comeback! Thanks!

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 1:46 PM by Brice Prunier

What about page with multiple parts. More and more web pages are rich and offer more than one context.

From my point of view, making MVC compliant on a page with multiple context ( implies different controller for each context ) an interesting feature will be to get a kind of MVC UpdatePanel that on client side (after load) will send an  MVC Get to retrieve its content and allow partial management via MVC Post.

The more I think on MVC in "real world" the more I fill this feature will be a corner stone for ASP.NET MVC Framework.

Do you intend to go into this direction?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 1:51 PM by jeff

Hi Scott,

Quick question on "Html.Form()".  This is really nice, but what if I want to pass in htmlAttributes for setting things like enctype="multipart/form-data"?  With the current method overloads, I have to specify controller name and action name if I want to pass in htmlAttributes.  I'd like to be able to do this:

Html.Form(new { enctype="multipart/form-data" })

thanks,

--jeff

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 2:16 PM by Pascal Lindelauf

Wow Scott & the ASP.NET MVC ninja’s… the new binding functionality is a huge improvement in terms of testability. Fantastic! I’m curious how advanced the binding mechanism is, especially with regards to binding associated objects (both singular and collections). Can anyone shed some light? Guess I’m gonna give it a try anyway.

And as for the validation: hallelujah! What a neat, clean and flexible way to solve this area that usually requires such tedious coding! Brilliant.

Guys, it’s especially because of your team's efforts that I’m finally starting to gain great confidence in Microsoft’s development routemap. It’s been a while, but now… hoooweee!

Cheers, Pascal

BTW, a 10D for only 10.99? Are you kidding me? What’s the URL of that webshop?! Oh darn, it’s in the test code only! ;)

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 2:19 PM by Mike

Is there a built in HttpVerbs enum that we could use, instead of writing "GET"? Might give some nice code hinting.

Also very important is that the framework allows for reusable validation logic on the client. There are so many validation tools being developed right now, I believe there's 4 on codeplex already. And the enterpsie library has one as well. Probably not going to happen in the 1.0 version?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 2:58 PM by dba123

Scott,

Can you post a link to your color scheme (settings file).

:)

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 3:00 PM by Alexander Gornik

Thanks, another great post Scott! At last, the validation issue is nicely covered and handled :).

Although i would like to point out one little problem (as it seems too me):

Don't you think that UpdateModel(..., new [] { "...", "..."  }) is a little too untyped for .NET 3.5 :)? This will again raise issues with refactoring and renaming of model classes. Wasn't that one of the goals of strong typed linq queries and of it's strongest benefits. Why can't we use lambdas, as everywhere else?

I think we really need something like UpdateModel<Product>(..., new [] { p => p.UserName, p => p.LastName } ).

p.s: and again, can't we also have some overload like: Html.TextBox(viewData => viewData.Product.FirstName) ? For strongly typed view data scenarios?

# New ASP.net MVC stuff &raquo; AlexHopmann.com

Tuesday, September 02, 2008 3:01 PM by New ASP.net MVC stuff » AlexHopmann.com

Pingback from  New ASP.net MVC stuff &raquo; AlexHopmann.com

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 3:22 PM by Celik

Nice article.

I am very pleased to see that MVC project is progressing rapidly.

# ASP.NET MVC: Publicada la Preview # 5!

Tuesday, September 02, 2008 5:33 PM by Blog del CIIN

Siguiendo con la gran oleada de novedades iniciada el mes pasado en plataforma Microsoft, el equipo de

# ASP.NET MVC Preview 5

Tuesday, September 02, 2008 5:35 PM by Il blog del team MSDN Italia

ScottGu ha annunciato il rilasciato della preview 5 di ASP.NET MVC , che potete scaricare da CodePlex

# ASP.NET MVC: Publicada la Preview # 5! &laquo; Pasi??n por la tecnolog??a&#8230;

Pingback from  ASP.NET MVC: Publicada la Preview # 5! &laquo; Pasi??n por la tecnolog??a&#8230;

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 5:44 PM by Doug

One thing that has been bugging me about many of the MVC samples I've seen is the use of root-absolute URLs in links and forms. For example, <a href="/controller/action">...</a> or <form action="/controller/action" method="post">...</form>.

Maybe it is all in the name of keeping things simple, but it seems to bypass a very important issue. What happens when I need to move my application to a new location on the web server? Those URLs will cause me no end of trouble.

I would love to see demos that reinforce good practices like using appropriate application-relative URLs. In fact, I would be interested in how this kind of thing is best done with MVC. I assume the Html.* helpers have support for this, but I've never really seen it discussed.

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 6:20 PM by Jorge

thank you Scott, welcome back, could you please post more about Linq to Entities/Linq to SQL on a n-Tier scenario, looks like is not possible to work like that, how is the better way to work with "Linq to.."? and about MVC is there a way to approach something with Silverlight? or would be MVP?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 7:16 PM by Dave Tigweld

So I'm still trying to follow the direction of ASP.Net MVC. What is the mandate? I was assuming it was just a pattern to enforce logical layer seperation but all I see is something Muddying up the HTML and making it harder for my designers. In Addition, it seems quite apparent that the design decisions aren't based on giving an end user the most responsive UI (Case in point, a post with a redirect ala the 1990's). Where is this thing headed?

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 7:23 PM by Edward J. Stembler

Slightly off topic...  I'm wondering, now that ASP.NET MVC is relying more and more upon Attributes, what is the strategy to keep IronPython and IronRuby compatible?  I can almost envision Attributes being auto-generated as python decorators for IronPython, but it's difficult to imagine something that would work for both languages (without adding new language features) and at the DLR level as well.  It would be interesting to hear if this is on your radar and what is being considered.

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 9:39 PM by ScottGu

Hi Edward,

>>>>>> Slightly off topic...  I'm wondering, now that ASP.NET MVC is relying more and more upon Attributes, what is the strategy to keep IronPython and IronRuby compatible?  I can almost envision Attributes being auto-generated as python decorators for IronPython, but it's difficult to imagine something that would work for both languages (without adding new language features) and at the DLR level as well.  It would be interesting to hear if this is on your radar and what is being considered.

Attributes are our current “registration” mechanism, but if you look closely, you’ll notice we went through great pains to try and remove reflection specific info. For example, action filters no longer have a MethodInfo property.

In a future MVC build we’ll have runtime registration methods for filters and those can be used by the DLR as well as statically typed languages, which should enable clean integration with dynamic languages.

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:21 PM by Andrea

Scott

great post as always. Something not really clear on the binding model. You omitted how to serialize the object and pass it to the MVC. Did I miss something? Could you provide a small sample?

thanks.

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 10:51 PM by kical

I hava a qustion to ask you!

HTML Code

<%using (Html.Form("ArStatus", "Add"))

 { %>

<%=ViewData["temp"]%>

<%=Html.TextBox("test", ViewData["test"])%>

<%=Html.SubmitButton("save", "Save", new { Class="commonButton"})%>

<%} %>

Controller Code

public class ArStatusController : Controller

   {

       public ActionResult Index()

       {

           // Add action logic here

           ViewData["temp"] = DateTime.Now;

           return View("ArStatus");

       }

       public ActionResult  Add(string test)

       {

           ViewData["temp"] = DateTime.Now;

           ViewData["test"] = "hello:"+test;

           retutn View("ArStatus");

       }

   }

then i use RenderAction include the usercontrol

<%Html.RenderAction<Armonitor.Controllers.ArStatusController>(ar => ar.Index()); %>

first loading the page,i can get the right html code that include usercontrol and aspx's

then click the "save" button,i can only get the usercontrol html code,

how i can i do it?thanks

# Sample Opinionated Controller

Tuesday, September 02, 2008 11:08 PM by Joshua Flanagan

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 11:24 PM by ScottGu

Hi Chris,

>>>>> Another great article as always.  I have been teaching myself MVC based on your blog posts.  Is there any other resources you would recommend?

Here are a few other sites/blogs I'd recommend subscribing to:

http://haacked.com/

http://blog.maartenballiauw.be

http://www.singingeels.com/

weblogs.asp.net/mehfuzh

weblogs.asp.net/stephenwalther

http://blog.wekeroad.com/

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 11:51 PM by ScottGu

Hi Steve,

>>>>>>> Thanks Scott for this detailed post. It's very helpful. I'm curious about this whole business of having multiple action method overloads that do totally different things depending on whether they're invoked with a GET or with a POST. You wouldn't abuse method overloads like that in normal C# code (C# method overloads typically achieve the same result, just using different parameters), so why would you use method overloads like that in ASP.NET MVC apps?

>>>>>>> I fully appreciate that Preview 5 still supports the more conventional approach of having different action method names to do different things (e.g., Create() and Save()), and by default action methods have the same name as their C# implementation. Encouraging developers to preserve this simplicity seems hugely preferable at first glance.

>>>>>>> Nice work with the ModelState and model binder stuff though, that looks great!

The problem with exposing two different URLs for the initial and then posted actions occurs when you have an error on the post.  When you redisplay the form the browser URL will be the /Save one - which means that if a user bookmarks it and comes back later it will blow up.  With other MVC frameworks they often do the technique I talked above above, where you have a giant if statement detect whether it is the get or post behavior.  The downside is that this makes code a little hard to read IMO.  Some Java frameworks append on the HTTP verb name to the method - which is something we considered (and which you can do with a custom route).  For for example:

public ActionResult Create() {

  // todo: get version

}

public ActionResult Create_Post() {

  // todo: post version

}

We thought that might be a little less elegant though than overloading the method.  Of course, if enough people disagree we can always change to use that approach as well.

Thanks,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Tuesday, September 02, 2008 11:52 PM by ScottGu

Hi Brennan,

>>>>>> Does the moving of the ActionLink and Form methods that take Expressions to Microsoft.Web.Mvc signify that they'll be removed in the future?  Because..  I like those.

No - they'll always ship in at least the future assembly.  The only signficance is that we aren't 100% positive yet whether they'll be in the officially supported V1 bits (which are guarenteed to be forward compatible in the future and whose API is locked).  Things in the future assembly might ship as a separate download from the official 1.0 package - which gives us a little more flexibility to experiment and try things out.

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Wednesday, September 03, 2008 12:05 AM by ScottGu

Hi Joe,

>>>>>>> Curious why you guys departed from the Request.DeserializeTo(...) approach you were using with BindingHelperExtensions.UpdateFrom(...).  I liked the convention-over-configuration approach of not having to create a  ModelBinder and instead naming my form fields modelname.attribute.  Is this still usable?

You won't need to create a ModelBinder to work against a standard class with ASP.NET MVC.  We are planning to include and "out of the box" modelbinder that works with standard objects, and which uses the modelname.propertyname syntax for mapping incoming parameters.

The UpdateModel() helper method also uses the modelname.propertyname syntax for mapping paramaters onto an existing instance of an object - and doesn't require you to register any modelbinders.

The benefit modelbinders do bring, though, is that you now have the flexibility to customize the serialization if you want (whereas before you couldn't).  We'll have smart defaults out of the box, though, so you only need to use this customization for truly custom scenarios.

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Wednesday, September 03, 2008 12:08 AM by ScottGu

Hi Steve,

>>>>>> UpdateModel question:  Many times I have a domain object that I'm using a form to only partially update a few of it's properties. ie.  Let's say I have a Customer object with an Address.  I create a control that handles updating the customer's Address. Street1 Street2 City, State, PostalCode

>>>>>> I want to bind just those 5 properties to the Customer's Address object.  Another senario - I have a Customer object and a form that only updates 2 properties - ie. Name and PhoneNumber.  So it's like a 'partial update' - is this possible without much code?

>>>>>> ie. I would hope to just pass the UpdateModel the Customer object and the two fields and then save it

>>>>>> public ActionResult SaveCustomer(Customer c)

>>>>>> {

>>>>>>>  UpdateModel(c, new[]{"Name", "TelephoneNumber"});

>>>>>> }

>>>>>>> possible?

Yep - that is what the UpdateModel method gives you.  Just specify the list of properties you do want to update, and it will only update those from the input collection.  This gives you the flexibility to-do both of your scenarios above.

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Wednesday, September 03, 2008 12:13 AM by ScottGu

Hi Joe,

>>>>>>>> Also, I like the focus on RESTful controllers that use the HTTP method to determine what action to fire, but I'm curious why the same thing couldn't be accomplished in the routes using route constraints? Then we wouldn't need the extra ceremony of attributes in the controller. Method overloads are pretty clear with or without specifying the HTTP verb in an attribute.  Also, by using routes for specifying HTTP verbs instead of the controller, we could then use REST in a very elegant way similar to Rails, in which GET on /product would go to one action, but POST on /product would go to another.

You can definitely do different routing based on verbs using route rules in Global.asax.  The MVCContrib project has a REST based route registration extension helper that will preconfigure all the REST based URL patterns for you to-do this.

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Wednesday, September 03, 2008 12:14 AM by ScottGu

Hi Daniel,

>>>>>> No love for IDataErrorInfo?

For Preview 5 you need to manually transfer your validation messages from your entity to ModelState.  We are looking at whether we can support some built-in mechanisms like IDataErrorInfo with a future drop to avoid the need for the helper method I did above.  So fingers crossed that might make it in.

Hope this helps,

Scott

# re: ASP.NET MVC Preview 5 and Form Posting Scenarios

Wednesday, September 03, 2008 2:04 AM by Jayasankar Pandyat

Great post Scott!!! Keep posting..

# asp.net mvc preview 5发布.

Wednesday, September 03, 2008 2:52 AM by