Hello,
I bind dataset to a CheckBoxList and radioboxlist (they are created dynamicaly, so I can't use databindings property).
To bind text and value properties I use:
_item.DataTextField = "Text"
_item.DataValueField = "Value"
Also I have column "Selected" (1/0)
How to set items' selected status depending on this data?
Like _item.SlelectedValueField = "Selected"
Unfortunately there is no such function.
What to do?
