Does anyone know how to disable an ASP.NET validator using JavaScript? I'm using javascript style.display = 'none' to disable parts of a web page. However these disabled parts have asp.net validators that are still firing and I need to disable then without doing a round trip to the server. Thanks.
|
feedback
|
|
Use this snippet:
| |||||||||
feedback
|
|
Here is detailed article on how to control ASP.NET Validators from JavaScript: How to control ASP.NET Validator Controls Client Side validation from JavaScript | |||
|
feedback
|
|
Additionally, rather than simply hiding elements you could set the Visible property to false...
This makes that item simply not render to the page, which I believe disables the validation. Someone please correct me if I am wrong. | |||||
feedback
|