Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :(

share|improve this question

2 Answers

up vote 4 down vote accepted

enable unobtrusive and disable clientvalidation.

<configuration>
  <appSettings>
    <add key="ClientValidationEnabled" value="false"/> 
    <add key="UnobtrusiveJavaScriptEnabled" value="true"/> 
  </appSettings>
</configuration>

I just tried it (actually with both false) and it works fine. Its possible your page was being cached as well. I recommend keeping UnobtrusiveJavaScriptEnabled=true because of the lighter ajax attributes it adds.

share|improve this answer
You're right - page being cached! Thanks – Jimbo Jun 7 '11 at 8:44

Disable it in your web.config:

<appSettings>
  <add key="ClientValidationEnabled" value="false"/>
</appSettings>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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