0

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

Shankar
  • 1,634
  • 1
  • 18
  • 23

3 Answers3

1

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/

user10635
  • 702
  • 4
  • 9
0

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

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
0

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.

Kon
  • 27,113
  • 11
  • 60
  • 86
  • I used AjaxControlToolkit SlideShow control, but could not get the selected index on post back. I also tried one from obout.com, same problem. May be these controls are meant for just displaying the images (and not used as a form field in post back). Both useless for my purpose. – Shankar Jan 02 '09 at 20:32