May 2012
Intermediate to advanced
440 pages
13h 54m
English
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 ...