Is it possible to create a combobox with images?

  • Thread starter Thread starter jose.cortijo
  • Start date Start date
J

jose.cortijo

Hi,

I need to put a combobox in my asp.net application but I need that each
item was an image.

is it possible with standar classes? I cannot spend any money on that.
:(

Thanks in advance.
Jose
 
No, it is not possible with "standard" classes. It is possible, however, to
create your own User Control or Server Control that looks and behaves like a
Combo Box with images in it. You would superimpose a number of Divs (Panels)
over a combo box, and write JavaScript or Server Side vent handlers that
respond to the Combo Box events, repositioning the panels. This would not be
an easy task, however.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.
 
Back
Top