I have a controller action whose definition looks like- public ActionResult ChangeModel( IEnumerable<MyModel> info, long? destinationId)
I am looking for a good resource that describes very thoroughly how model binding works with ASP.NET MVC 3 (or to a lesser extent, MVC 2) and different approaches. I have not been able to find any goo
A simple controller action that is posted to which takes a model used by the view\'s form isn\'t being bound to the form fields when running under Mono 2.10.1.Under MS.NET the same code executes as ex
I created a custom string object, but it does not modelbind when I post it back to the server. Is there an attribute I\'m missing on the class or something?
DropDownLists are probably my least favourite part of working with the MVC framework. I have a couple of drop-downs in my form whose selected values I need to pass to an ActionResult that accepts a mo
Let\'s say I have a user class setup with validation like this: [MetadataType(typeof(ssUserMetaData))]
I\'m trying to build a custom action filter which grabs the incoming model out of the filter context, adds it to tempdata, then does \"other stuff\".
My view model is along the lines of EditViewModel SomeUserType User Dictionary<string, string> Claims
I have a dynamic forms with checkbox/radio-button lists & matrices: Following code renders checkbox list:
I am using MVC 3 final RTM. Given This route: context.MapRoute( \"Blog_Posts\", \"Blog/Posts/{id}/{slug}\",