Skip to content

Instantly share code, notes, and snippets.

@caedmonjudd
Last active June 8, 2016 20:12
Show Gist options
  • Save caedmonjudd/76820e17d68637edae4d5afd0d5825db to your computer and use it in GitHub Desktop.
Save caedmonjudd/76820e17d68637edae4d5afd0d5825db to your computer and use it in GitHub Desktop.
MVC3 Model Validatation - Extract Errors
foreach (ModelState modelState in ViewData.ModelState.Values)
{
foreach (ModelError error in modelState.Errors)
{
ModelState.AddModelError("Name", error.ErrorMessage);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment