c# - CheckBoxList item checked Event -


i'm implementing checkboxlist, if item checked\unchecked, irrespective of 1 it, want launch event. how done, please help.

according msdn

<asp:radiobuttonlist id="radiobuttonlist1"              onselectedindexchanged="index_changed"             autopostback="true"             runat="server"/>  void index_changed(object sender, eventargs e)  {          label1.text = "you selected " + radiobuttonlist1.selecteditem.text +                      " value of $" + radiobuttonlist1.selecteditem.value +                      "."; } 

the same should work on checkboxlist too.


Comments

Popular posts from this blog

design - Custom Styling Qt Quick Controls -

Unable to remove the www from url on https using .htaccess -