Tagged Questions
9
votes
3answers
2k views
Best Practices when Implementing IModelBinder
I'm looking for a set of best practices to use when implementing IModelBinder.
I've read three different MVC books and each one does some slightly different stuff in their implementations without any ...
5
votes
2answers
2k views
IModelBinder and ASP.NET MVC Beta
Does anyone have links to tutorials regarding the new IModelBinder in asp.net mvc beta?
I can't get my head around it properly, so much has changed.
Thanks
1
vote
1answer
430 views
Can I automatically trigger model validation inside a custom model binder?
I have a complex object that I'm binding off of a form. The model binder looks like this:
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
...
1
vote
2answers
318 views
How do I invoke UpdateModel from within a Custom ModelBinder? (MVC)
I'm creating a few custom binders for complex types in my Model. My model is composed of objects that have their own separate binders. I want the base object to do its dirty work and then populate ...
1
vote
2answers
1k views
ASP.NET MVC - Custom model binder able to process arrays
I need to implement a functionality to allow users to enter price in any form, i.e. to allow 10 USD, 10$, $10,... as input.
I would like to solve this by implementing a custom model binder for Price ...
1
vote
1answer
505 views
Custom IModelBinder and Database Access
For a user object in my asp.net mvc project, I have written a custom modelbinder to check whether passwords are valid and whether two matching passwords were entered etc..
The login name needs to be ...