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?
You can disable javascript in your browser and that will help you to check server side validation. There is no global setting for this.