I have an ASP.NET MVC application that is calendar-like. As per the NerdDinner example, I\'m updating the results of my edit page using UpdateMethod()
In my app, cer
There are overloads of UpdateModel that take an array of strings naming properties to update. These overloads will only update the named properties.
There may be other easier / more declarative ways to accomplish this, I'm not an expert on MVC data binding.