I have various checkboxes that I want to disable or enabled based on a different checkbox being checked or unchecked. Say checkbox1 if chekced will disable checkbox2.
so :
if checkbox1.checked = true then
checkbox2.enabled = false
end if
I would think this would work, but it does not. I have tried to put in a onclick event in vb.net for the web form but it does not work. how can I get this to work?
so :
if checkbox1.checked = true then
checkbox2.enabled = false
end if
I would think this would work, but it does not. I have tried to put in a onclick event in vb.net for the web form but it does not work. how can I get this to work?