呵呵,翻个图片
<input type="checkbox" onclick="this.checked = !this.checked" />
将CheckListBox的AutoPostback属性设置为true,然后在IndexChanged事件中写:
clb.SelectedIndex=0;//注意:这里的cbl是该控件的id,0是你的默认值,如果默认不选中任何项,那么就设置为-1。
最好加上异步刷新的效果,要不用户体验就不好了,呵呵
二楼大哥的思路比较正确
<input type="checkbox" onclick="this.checked = !this.checked" />
不过你要在CheckListBox的item中的添加AddAttribute或onclientclick中完成