Dropdownlist with Image beside each item
How can I have a开发者_运维知识库 small image beside each item of asp.net dropdown list.
Regards ravi
Try this here, great combo box for ASP.
Obout.com
You'd have to implement your own control, because as far as I know, standard DropDownList uses browser's standard combobox and it does not support images.
You might start with http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx and modify it to show images
There is no such thing in an HTML select
element. You would have to write it using JavaScript, e.g. something here.
精彩评论