vote up 5 vote down star

Hi

I want to get all the error messages out of the modelState without knowing the key values. Like I just want to do a for loop and and grab all the error messages that the ModelState has.

How can I do this?

Thanks

flag

69% accept rate

1 Answer

vote up 4 vote down check
foreach (ModelState modelState in ViewData.ModelState.Values) {
    foreach (ModelError error in modelState.Errors) {
        DoSomethingWith(error);
    }
}

See also http://stackoverflow.com/questions/573302/how-do-i-get-the-collection-of-model-state-errors-in-asp-net-mvc.

link|flag

Your Answer

Get an OpenID
or

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