Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

marked as duplicate by casperOne Aug 21 '12 at 20:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 12 down vote accepted
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.

share|improve this answer
+1 for mentioning jquery.validate.js – guillegr123 Nov 13 '12 at 16:42

If you want to check for it in View on server side, you could use ViewData.ModelState.IsValid

share|improve this answer
1  
That's what I was looking for! Thanks! – Ev. Oct 24 '12 at 6:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.