Hi there! Does somebody know how to do next:
Ok ! I have webForm with couple Web-Controls (evrething runat=server).I wish on click (on checkBox) form would not be sended to server but will exequte JavaScript function to disable rest of controls (exept checkBox itself) right on Client-side ! I don't want to use autoPostBack=true !!!!!
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
.....
.....
response.write ("<script lang='js'>?????????</script>"
.....
.....
End Sub
Thanks!
Ok ! I have webForm with couple Web-Controls (evrething runat=server).I wish on click (on checkBox) form would not be sended to server but will exequte JavaScript function to disable rest of controls (exept checkBox itself) right on Client-side ! I don't want to use autoPostBack=true !!!!!
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
.....
.....
response.write ("<script lang='js'>?????????</script>"
.....
.....
End Sub
Thanks!