views:

122

answers:

4

Hi,

How can I have a small image beside each item of asp.net dropdown list.

Regards ravi

+1  A: 

Try this one http://www.csharphelp.com/2006/08/combobox-with-images/

zapping
+1 for good link
Jamie Keeling
A: 

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

Axarydax
A: 

There is no such thing in an HTML select element. You would have to write it using JavaScript, e.g. something here.

Deniz Dogan
+1  A: 

Try this here, great combo box for ASP.

Obout.com

LnDCobra