Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
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
3
votes
2answers
336 views

Asp.net MVC2 IModelBinder is trying to drive me nuts (and succeeding)

Let's say I have class FooClass { } class BarClass { public FooClass Foo; } This BarClass is the Model I'm passing to the ViewPage. I'm also passing (via ViewData) an ...
3
votes
2answers
1k views

MVC 2, IModelBinder & ValueProvider changes

I'm trying to migrate to ASP.Net MVC 2 and meet some issues. Here is one : I needed to bind directly a Dictionary as result of a view post. In ASP.Net MVC 1 it worked perfectly using a custom ...
2
votes
1answer
884 views

Extending Sanderson's custom mvc ModelBinder for an object stored in session

In his wonderful MVC book Steven Sanderson gives an example of a custom model binder that sets and retrieves a session variable, hiding the data storage element from the controller. I'm trying to ...
1
vote
1answer
402 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
295 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
498 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 ...