Chapter 10. Model binders and value providers

 

This chapter covers
  • Examining model binding
  • Creating a custom model binder
  • Extending value providers

 

The messaging protocol of the web, HTTP, is decidedly string-centric. Query-string and form values in Web Forms and even classic ASP applications were represented as loosely typed key-value string dictionaries. But with the simplicity of controllers and actions came the ability to treat requests as method calls, and to post variables as parameters to a method. To keep the dictionary abstractions at bay, you need a mechanism to translate string-based input into strongly typed objects. By default, ASP.NET MVC will translate request variables into a format you can easily work with. However, you’ll ...

Get ASP.NET MVC 4 in Action now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.