ASP.NET MVC 2.0 Client-Side Validation HOWTO
- by AlexWalker
Where can I find some good information on the new client-side validation functionality included in ASP.NET MVC v2?
I'd like to find information about using the client-side validation JavaScript without using DataAnnotations, and I'd like to find out how custom validations are handled.
For example, if I want to validate two fields together, how would I utilize the provided JavaScript? Or if I wanted to write validation code on the server-side that queried a database, how could I use the provided JavaScript to implement a similar validation?
I don't see any books on MVC2 yet, and the blog entries I've found are not detailed enough.