06 April 2009 ASP.NET MVC, HowTo, ModelBinders Robert Muehsig

image_thumb4With ASP.NET MVC the developer has now full control about the HTML rendering and how the form data will be transmitted to the server. But how can you get the form values on the server side? There are better ways in MVC to do that than Request.Form["..."].

Intro
If you are new to ASP.NET MVC, I recommend you to read this post or look at asp.net/mvc.

"Bindings"
In this HowTo you can learn how to access the form data in a more elegant way than Request.Form["..."].

Structure


image_thumb8

We have a "BindingController" and in the Model folder a "Person" class and 3 views:

- "CreatePerson" (form to create a person)
- "Result" of the action
- "Index" is the overview page

Person Class:

  1. public class Person  
  2. {  
  3.     public Guid Id { get; set; }   </span>
  4.     public string Prename { get; set; }   </span>
  5.     public string Surname { get; set; }   </span>
  6.     public int Age { get; set; }   </span>

Form in CreatePerson.aspx:

  1. <% using (Html.BeginForm()) { %>  
  2.  
  3.     <fieldset>  
  4.         <legend>Fields</legend>  
  5.         <p>  
  6.             <label for="Id">Id:</label>   </span>
  7.             <%= Html.TextBox("Id") %>   </span>
  8.             <%= Html.ValidationMessage("Id", "*") %>   </span>
  9.         </p>  
  10.         <p>  
  11.             <label for="Prename">Prename:</label>   </span>
  12.             <%= Html.TextBox("Prename") %>   </span>
  13.             <%= Html.ValidationMessage("Prename", "*") %>   </span>
  14.         </p>  
  15.         <p>  
  16.             <label for="Surname">Surname:</label>   </span>
  17.             <%= Html.TextBox("Surname") %>   </span>
  18.             <%= Html.ValidationMessage("Surname", "*") %>   </span>
  19.         </p>  
  20.         <p>  
  21.             <label for="Age">Age:</label>   </span>
  22.             <%= Html.TextBox("Age") %>   </span>
  23.             <%= Html.ValidationMessage("Age", "*") %>   </span>
  24.         </p>  
  25.         <p>  
  26.             <input type="submit" value="Create" />   </span>
  27.         </p>  
  28.     </fieldset>  
  29.  
  30. <% } %> 

Binding: 1. Option - FormCollection:

  1. [AcceptVerbs(HttpVerbs.Post)]  
  2. public ActionResult FormCollection(FormCollection collection)   </span>
  3. {  
  4.     Person person = new Person();   </span>
  5.     person.Prename = collection["Prename"];   </span>
  6.     person.Surname = collection["Surname"];   </span>
  7.     person.Age = int.Parse(collection["Age"]);   </span>
  8.     return View("Result", person);   </span>

This option is the simplest possible way to access the form data, but not very elegant and hard to test, because you need to know which keys are in the FormCollection.

Binding: 2. Option- Parameter Matching:

  1. [AcceptVerbs(HttpVerbs.Post)]  
  2. public ActionResult ParameterMatching(string Prename, string Surname, int Age)   </span>
  3. {  
  4.     Person person = new Person();   </span>
  5.     person.Prename = Prename;  
  6.     person.Surname = Surname;  
  7.     person.Age = Age;  
  8.  
  9.     return View("Result", person);   </span>

This option is very handy. The HTTP form values will be mapped to the parameters if the type and name are the same as the transmitted form value. This option is easy to test, but you have to map the parameters to your model manually.

Binding: 3. Option - Default Binding:

  1. [AcceptVerbs(HttpVerbs.Post)]  
  2. public ActionResult DefaultBinding(Person person)   </span>
  3. {  
  4.     return View("Result", person);   </span>

Now we use our own model as parameter type. The default model binder, which is included in the ASP.NET MVC, will map the incomming HTTP form values to the properties of our person, if type and name match.

Binding: 3. Option with addon - Default Binding with Include:

  1. [AcceptVerbs(HttpVerbs.Post)]  
  2. public ActionResult DefaultBindingWithInclude([Bind(Include="Prename")] Person person)   </span>
  3. {  
  4.     return View("Result", person);   </span>

You should think bevor you bind - to secure your applicaiton you can specify which properties will be mapped to the properties of the parameters.

Binding: 3. Option with addon - Default Binding with Exclude:

  1. [AcceptVerbs(HttpVerbs.Post)]  
  2. public ActionResult DefaultBindingWithExclude([Bind(Exclude = "Prename")] Person person)   </span>
  3. {  
  4.     return View("Result", person);   </span>

The same functionality, but this time reversed.

Binding: 3. Option with addon - Default Binding with Prefix:

image_thumb11

If you put a prefix in your Html Input controls (because you have multiple "name" fields), than you can specify a prefix.

All these options can be used together and you can map more than one parameter.

Binding: 4. Option - IModelBinder

If the values are getting more complex or you want your own mapping logic than you can use the IModelBinder interface. One example is Fileupload or to get the session user.

Now you just need to implement the IModelBinder interface:

  1. public class PersonModelBinder : IModelBinder  
  2.     {  
  3.         public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)   </span>
  4.         {  
  5.          if (controllerContext == null) {     </span>
  6.              throw new ArgumentNullException("controllerContext");     </span>
  7.          }    
  8.          if (bindingContext == null) {     </span>
  9.              throw new ArgumentNullException("bindingContext");     </span>
  10.          }  
  11.  
  12.             NameValueCollection collection = controllerContext.RequestContext.HttpContext.Request.Form;  
  13.  
  14.             Person returnValue = new Person();   </span>
  15.             returnValue.Id = Guid.NewGuid();  
  16.             returnValue.Prename = "Modelbinder: " + collection["Prename"];   </span>
  17.             returnValue.Surname = "Modelbinder: " + collection["Surname"];   </span>
  18.             int age = 0;   </span>
  19.             int.TryParse(collection["Age"], out age);   </span>
  20.             returnValue.Age = age;  
  21.  
  22.             return returnValue;   </span>
  23.         }  
  24.  
  25.     } 

You get full access to the form values or other controller properties or route value.

You can register your Modelbinder global in the Global.ascx:

  1. protected void Application_Start()  
  2. {  
  3.     RegisterRoutes(RouteTable.Routes);    
  4.     ModelBinders.Binders[typeof(Person)] = new PersonModelBinder(); // Important!   </span>

Everytime you have a parameter of type "Person" the "PersonModelBinder" will try to map the values to this object.

Or you can specify it per ActionMethod:

  1. [AcceptVerbs(HttpVerbs.Post)]  
  2. public ActionResult PersonModelBinder([ModelBinder(typeof(PersonModelBinder))] Person person)   </span>
  3. {  
  4.     return View("Result", person);   </span>

Lists/Array Binding:

You can even "bind" arrays / lists. Read Scott Hanselmans post for more information.

Screens:

image_thumb12

image_thumb14

image_thumb15

[Download Source Code]


Written by Robert Muehsig

Software Developer - from Saxony, Germany - working on primedocs.io. Microsoft MVP & Web Geek.
Other Projects: KnowYourStack.com | ExpensiveMeeting | EinKofferVollerReisen.de