Introduction:
In this article I am going to explain how to make a CheckBoxList single select in asp.net
Description:
Usually RadioButtonList is the control which allow the user to select a single selection of items inside it and users will use CheckBoxList control to allow multiple selection of items. However in some cases we need to make the CheckBoxList control a single select one. You can make use of Javascript to achieve this.
The logic here is to attach a Javascript function in onclick event of each items in CheckboxList.
Javascript Function
HTML:
Demo