I am trying to disable ASP.Net Validator such that its disabled on postback.
I am disabling the validator on client side using
$('.c_MyValidator').each(function() {
ValidatorEnable(document.getElementById($(this).attr('id')), false);
});
but when the page postbacks, my page is still invalid. I am in UserControl (.ascx) so no override for Validate() for me.
How can I disable the validator such that its enabled=false when the page postbacks.
Any ideas?