Monthly Archives: October 2008

Enable/Disable ASP.NET server validator control at client side using JavaScript?

Guys, If you want to enable/disable any server control in java script normally you can achieve it using following code: //To Enabledocument.getElementById(”).disabled= false; AND//To Disabledocument.getElementById(”).disabled= true; But that doesn’t hold true for ASP.NET server validator controls. To disable/enable ASP.NET validator … Continue reading

Posted in Developer Tips | Leave a comment