ASP.NET client side control enablement

BluewaterRocket

New member
Joined
Mar 13, 2003
Messages
3
Location
Florida
Im an asp newbie, and am trying to figure out how to enable a control based upon a client side event. e.g. I would like to enable a checkboxlist based upon another checkbox being checked - as well as perform the complimentary action of disabling the checkbox list if the checkbox is de-selected.

Any pointers appreciated
 
Then you should use Javascript rather than ASP because it is in client site.

Just one line of code

document.form1.your_control.disabled = true;
 
Back
Top