ModelState.AddModelError – How can I add an error that isn’t for a property?
I am checking my database in Create(FooViewModel fvm){…} to see if the fvm.prop1 and fvm.prop2 already exist in that combination; if so, I … Read more
I am checking my database in Create(FooViewModel fvm){…} to see if the fvm.prop1 and fvm.prop2 already exist in that combination; if so, I … Read more
Simple question, if you use the Html Helper from ASP.NET MVC Framework 1 it is easy to set a default value on a … Read more
I have implemented in my app the mitigation to CSRF attacks following the informations that I have read on some blog post around … Read more
I am retrieving two date time values from the database. Once the value is retrieved, I need the difference between the two values. … Read more
I’ve had it suggested to me that I should use FileResult to allow users to download files from my Asp.Net MVC application. But … Read more