I would like to disable all client side validation in an Asp.Net web site in order to test that server side validation is correct (i.e. I want to test against people altering the response or tampering with client script)

Currently, I am either-

  • Disabling JS in the browser
  • Manually disabling client validation for individual validators.

Is there a global setting for this?

link|improve this question

73% accept rate
feedback

2 Answers

You can disable javascript in your browser and that will help you to check server side validation. There is no global setting for this.

link|improve this answer
feedback

You can do it by a simple hack in javascript.

As the asp.net client side validation adds a attribute to form tag that is onsubmit so you need to remove it by placing the script on your master page header section.

<script type="text/javascript">
    window.onload = function () {
        if (document.forms[0].name == 'aspnetForm') {
            document.forms[0].onsubmit = '';
        }
    }
</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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