↧
An intuitive Dictionary Model Binder for ASP.NET MVC
The other day I was working on an ASP.NET MVC website and came across a need to post an array from the browser into the web app. The framework comes with something called a Model Binder that...
View ArticleVerifying Anti-Forgery Token for Form POST only
As many of you know, the ASP.NET MVC Anti-Forgery token helps thwart Cross Site Request Forgery attacks. Any site that uses authenticated sessions (99% of web apps) should use similar mechanisms so...
View ArticleDictionary Model Binder in ASP.NET MVC2 and MVC3
In a decidedly typical turn of events, Microsoft changed the API of BindModel in ASP.NET MVC 2 such that it breaks DefaultDictionaryBinder. No longer can you enumerate through the ValueProvider,...
View Article