I need to disable client-side validation for a form on a single view.
How do I do this?
I do not want to just disable the following JS files:
<script src="@Url.Content("~/Scripts/jquery/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
Brad Wilson describes this in his blog post: http://bradwilson.typepad.com/blog/2010/10/mvc3-unobtrusive-validation.html – I have highlighted the bits that answers your question (the last line) in the following quote from the blog post: