Shankar
Shankar

Reputation: 1656

ASP.NET Image Listbox

I want to display a list of images (instead of text) for the user to choose from. The control is databound (the URLs come from the database) Instead of the typical vertical scroll bar in a listbox, I want this box to be horizontal. I'm looking for an ASP.NET server control similar to this: http://www.infragistics.com/dotnet/netadvantage/aspnet/webimageviewer.aspx#Overview

I considered all the answers and finally decided to use the ComboBox from obout.com which can also display the images.

thanks Shankar

Upvotes: 0

Views: 4313

Answers (3)

Kon
Kon

Reputation: 27441

Unless I'm missing something, this seems like a pretty simple problem to me. Just create a scrollable DIV that will host all the images.

Upvotes: 0

Joel Coehoorn
Joel Coehoorn

Reputation: 415810

I'd just put them in a div (asp:panel?) that's styled to have a particular height and width and overflow horizontally.

Upvotes: 0

user10635
user10635

Reputation: 702

if you are experienced with ajax and/or jQuery you can have a look at the jQuery SliderGallery control.

http://ui.jquery.com/repository/real-world/product-slider/

Upvotes: 1

Related Questions