Possible Duplicate:
MVC 3 - checking if form is valid (has passed client side validation)
Is there a way to check if unobtrusive validation did pass/form is valid?
I need to show an alert box if the form is not valid. how would i do it in mvc3? thanks
If you want to check for it in View on server side, you could use
ViewData.ModelState.IsValid
if (!$('#id-of-your-form').valid())
alert('Invalid');
Should do the trick, MVC validation makes use of jquery.validate.js which attaches to the form.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With