If you attended my advanced Android presentation at the Twin Cities Code Camp 9, you can find the presentation located below. Advanced android View more presentations from donnfelker. …
ModelBinding ASP.NET MVC and Multiple Field Validation
This tip comes to you from my blog, but the hat-tip goes to Andres Nelson whom I work with at my current client who actually showed me how to do this. The Scenario You have a grid with multiple …
Continue Reading about ModelBinding ASP.NET MVC and Multiple Field Validation →
MacBook Pro – Windows 7 Boot to VHD
Anyone who knows me personally knows that I run all of my work in a virtual environment. Back in 2009 when Hanselman posted about the Boot-to-VHD option of Windows 7, I had it up and running by the …
Continue Reading about MacBook Pro – Windows 7 Boot to VHD →
A Poll: Web Api Calls
A couple of days ago I threw out a poll on twitter to see what people thought of a particular question I had in mind. Here it is: What I'm after is pretty simple ... how should one handle …
ASPNET MVC: Handling Multiple Buttons on a Form with jQuery
Sometimes your task in MVC involves many buttons in the same form. Such as the screen shot here. What happens in most situations is that you end up having some code that kind of looks like …
Continue Reading about ASPNET MVC: Handling Multiple Buttons on a Form with jQuery →
MVC: Unit Testing Action Filters
Certain parts of ASP.NET MVC can be a real pain to test. Namely Model Binders, Action Filters and anything that relies on some magic "Context" that seems to derive from HttpContext, ControllerContext, …