Is there any way to ignore some properties (on a POCO) when validating a form in ASP.NET MVC3?

前端 未结 9 749
春和景丽
春和景丽 2021-02-05 05:59

i\'ve got a sign up wizard for new user registration. When I try to goto the 2nd page, I get validation errors because my User object hasn\'t been fully populated,

9条回答
  •  天涯浪人
    2021-02-05 06:44

    To ignore the properties from ModelState, here is the simplest code.

    if (ModelState["PropertyName"] != null) ModelState["PropertyName"].Errors.Clear();
    

提交回复
热议问题