Image in DropDownList
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
How do I add an image into a dropdownlist? For example I have a dropdown with country names, I would like to add the flag of that country next to it. Thanks
-
How do I add an image into a dropdownlist? For example I have a dropdown with country names, I would like to add the flag of that country next to it. Thanks
A dropdownlist renders as a <select> tag on the client, which does not support images. You can instead purchase a custom component, or develop your own. Here's an article showing a custom dropdown - you may be able to adapt it for your use. http://www.codeproject.com/aspnet/ComboAdjustDropDownWidth.asp[^]