Hello,
Can i change Text of CheckboxList ListItem codebehind in asp.net
I have checkboxlist . for ex :
I am binding checkboxlist on dropdownlist selected index change event.
I want to change text PERL to PHP on one of dropdown selection, as I am using only one Checkboxlist on all dropdown selection, so i just want to change text of one of the listitem
Thanks !
Riddhi ValechaPosted Jun 25, 2024, 5:47 PM
Hello,
Use the property "SelectedMode" as "Single" of checkboxlist.
Set - Autopostback to true.
protected void checkboxlist_SelectedIndexChanged(object sender, EventArgs e)
{
Bind Dropdownlist
}