I am curious as to what other methods there are for form validation. Currently the solution is .NET 4, MVC 3, and the form post is a traditional non-Ajax post. Obviously there are many ways to go about validating the form post, but my question is this, without utilizing DataAnnotations, in your opinion what is the best client-side validation method? The form also has several radio-button groups that are being generated via a foreach, these radio-buttons will also need to be null-checked and validated.
- What downstream impact will the implimentation of DataAnnotations, as well as enabling client side validation have on the pre-existing forms?
Thank you in advance!