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,
User
To ignore the properties from ModelState, here is the simplest code.
if (ModelState["PropertyName"] != null) ModelState["PropertyName"].Errors.Clear();