I have an idea which I dont know how to implement. In MVC 3 controller I have an if statement, and I want the controller to return an error message if the if statement fails. And I have a ValidationSummery on that page, so its better if it will catch the error message and present it..

How do I do this?

Thanks

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In the controller you can add an error message by

ModelState.AddModelError(string key, string errorMessage);
link|improve this answer
Cool, that worked. But what it I use excludePropertyErrors=true in ValidationSummery? – nir Jun 18 '11 at 21:22
If you don't pass in a key to this function it will work. The key in this case would be the property name of your model. So if you do ModelState.AddModelError(string.Empty, "Error Message") and excludePropertyErrors = true it will still show up. – John Kalberer Jun 20 '11 at 15:30
Cool, Thanks!!! – nir Jun 20 '11 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.