0
votes
2answers
78 views
ASP.NET MVC: Best way to trim strings after data entry. Should I create a Custom Model Binder?
I'm using ASP.NET MVC and I'd like all user entered string fields to be trimmed before they're inserted into the database. And since I have many data entry forms, I'm looking for an elegant way to …
1
vote
1answer
53 views
Doing custom binding for a specific data-type in a ModelBinder
I'm in the process of creating my own custom ModelBinder that inherits from DefaultModelBinder, and manually binds XElement-typed properties.
Now it seems that I have to override the 'BindProperty' …
3
votes
2answers
411 views
MVCContrib grid and posting back with model binder
The contents of my MVCContrib grid come from the Model on a strongly typed View. When a post is made, the contents of the grid are not in the model object when it returns to the controller. I can see …
0
votes
1answer
141 views
Model binder in MVC question
I am getting the following Error
The model item passed into the dictionary is of type 'MvcWebApplication.Models.Product' but this dictionary requires a model item of type …
2
votes
4answers
1k views
Asp.net MVC Module binding with validation for Complex Types
I'm building a questionnaire app in asp.net mvc, and I'm having trouble with the module binder for a list of complex types.
First: I can't get …
5
votes
4answers
961 views
How to test custom Model Binders in ASP.NET MVC?
I've written some custom model binders (implementing IModelBinder) in our ASP.NET MVC application. I'm wondering what is a good approach to unittest them (binders)?
7
votes
2answers
1k views
MVC DateTime binding with incorrect date format
Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of
public ActionResult DoSomething(DateTime startDate)
{
...
}
This successfully converts a …
