In MVC 3, it has DataAnnotations and also Custom Validation for validating on client side. But I can use Jquery or Javascript to write my own validation to a .js file. I mean I use the script tag and type=text/javascript. So which one should I use, the one in MVC3 or the other?
|
|
|
MVC's data annotations use jquery validation on the client side. The point is that you use one method to do validation, and it works on both the server and the client. You don't ever want to do only client-side validation, since a malicious attacker could bypass your javascript and send illegal values. client-side validation is a nice thing for users, but should never be used without server side validation. MVC does both with data annotations, and you only have to deal with it in one place. |
|||||
|
|
As Mystere Man pointed out, just use MVC's data annotations as it does both client and server side validation. Your question is a bit vauge, but based on your comment to Mystere Man I think you want to know how you can change the validation messages yourself? If so, you can overload
And on your models you can have a custom message for each of them by using an attribute like this:
You can also create custom validation, like a check box must be checked (since the |
|||
|
|