I have build a view which acts like a Wizard (Next, Previous, Finish), now I have the need to validate each wizard page not only on the client but also on the server because of some special complex logic...
what do you think is the best approach to do this?
- submit the ajax form on every page change (problem that validation for all other pages on the server causes Model State error)?
- send only the fields of the current page and validate it on the server - but how to do this?
- another approach?
robert