ASP.NET 图像列表框
我想显示图像列表(而不是文本)供用户选择。 该控件是数据绑定的(URL 来自数据库),而不是列表框中典型的垂直滚动条,我希望此框是水平的。 我正在寻找与此类似的 ASP.NET 服务器控件: http ://www.infragistics.com/dotnet/netadvantage/aspnet/webimageviewer.aspx#Overview
我考虑了所有答案,最后决定使用 obout.com 的 ComboBox,它也可以显示图像。
谢谢 香卡
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我只是将它们放在一个 div (asp:panel?) 中,该 div 的样式具有特定的高度和宽度并水平溢出。
I'd just put them in a div (asp:panel?) that's styled to have a particular height and width and overflow horizontally.
如果您有 ajax 和/或 jQuery 经验,您可以查看 jQuery SliderGallery 控件。
http://ui.jquery.com/repository/real-world/product -滑块/
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/
除非我遗漏了什么,否则这对我来说似乎是一个非常简单的问题。 只需创建一个 可滚动 DIV 来托管所有内容图像。
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.