This is my setup:
Model => View1 => Validate Model
Model => View2 => I need to ignore Validation and just pass the Model
ViewData from Model => View3
As you can see, I'm trying to pass my Model from View to View. However, it's causing my problems because when View2 is posted, the Model wants to Validate but the form elements from View1 no longer exist in View2.
Is there a way to tell the controller not to Validate the Model that second time?