Hi,
i am developing a system using asp.net(c#) and javascripts. i make a button in my form disabel in page load method. if a radio button in my page is clicked i have to enable that button. i am using a javascript method in client side to enable the button. however i am calling another javascript method on "onclientclick" method of the button. i have discovered that this onclientclick method is not called after i enabled the button by clicking the radio button.
i tried to use setAttributes method in javascript method of enabling the button back.
document.getElementById("btnSave").setAttribute("o nclientclick","javascript:retrun validateMthod();");
but it does not work
please help