c# - How to find control of dynamically added CheckBoxList into Panel -


i added checkboxlist dynamically panel in asp.net using c#. it's dropdownlist.

now want bind selected items checkboxlist textbox on button click. before of need find control.

i trying find control below code not working.

checkboxlist chklstitem = (checkboxlist)panlddl.findcontrol("chklstitem");  


Comments