I have a checkboxlist in C# that is databound from the database. What I would like to do is display an icon on the right side after the text for each of the checkboxlist items. Each icon needs to be different though. Thanks for your help!
CheckBoxList Problem
1.1k Views Asked by MiziaQ At
3
There are 3 best solutions below
0

We've used an approach that is fairly similar, but moves the code to the object model to simplify implementation on multiple pages.
Read-only property in the object code (C#):
public string chk_item_html { get { return item_name + string.Format("<img src='item{0}.png' />", item_id); } }
And then in the asp:CheckBoxList, you simply set DataTextField = "chk_item_html"
You could do something like this