Tagged Questions
7
votes
3answers
723 views
IValidatableObject vs Single Responsibility
I like the extnesibility point of MVC, allowing view models to implement IValidatableObject, and add custom validation.
I try to keep my Controllers lean, having this code be the only validation ...
2
votes
2answers
906 views
MVC Validation with ModelState.isValid through a wizard
I'm working on a small educational project on MVC 3, and I'm facing a small problem, when attempting to handle validation in my application through a wizard.
I tried to get benefit from the ability ...