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
Additionally, rather than simply hiding elements you could set the Visible property to false...
whateverItem.Visible = 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.