I went through a few blogs/posts and there are some good solutions for input validations in Mvc 1.0, but most of them are about non-Ajax scenarios, so I was wondering what your preferred method is when using jQuery Ajax?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In asp.net mvc 1.0 you don’t really have many options for validation. It is absolutely required to have server-side validation and I usually make my own custom validation. It is also good to have client side validatio that is easy to do with jQuery. There are several good projects for automated validation like MVCValidationToolkit and xVal that you can try.