I have a framework for client side validation that I'd prefer to use over the existing one that ships with ASP.NET MVC 3.
Does anyone know how to disable it in MVC 3?
I have tried the following:
HtmlHelper.ClientValidationEnabled = false;
HtmlHelper.UnobtrusiveJavaScriptEnabled = false;
And this in the web.config:
<configuration>
<appSettings>
<add key="ClientValidationEnabled" value="false"/>
<add key="UnobtrusiveJavaScriptEnabled" value="false"/>
</appSettings>
</configuration>
Neither have worked :(
