Validate two properties against each other in ASP.NET MVC2, with DataAnnotations
- by mico
For example, I'd like to validate a user registration form and check whether user has entered his password in "password" and "confirm password" fields, AND that those two values are the same.
Found this but is reflection really the only way?