ASP.NET 服务器图像浏览器
我正在使用 ASP.NET 开发电子商店。
在管理面板中,当主持人想要定义产品图像时,我想让他上传一个包含所有所需图像的 ZIP 文件。
我这样做了,但现在我正在寻找一个控件或示例,让用户可以从文件夹(在服务器中)观看和选择图像。
我寻找图像浏览器。 有什么想法吗?
I am developing e-Shop with ASP.NET.
In admin panel when moderator wants to define image for products I want to let him to upload a ZIP file that contains all his desired images.
I did that but now I am looking for a control or sample that let user watch and choose images from a folder (in server).
I look for Image borwser.
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有许多 jQuery 插件可以浏览图像。您还可以使用
System.IO.DirectoryInfo
(获取文件夹和文件列表)和GridView
(数据控件。)There are number of jQuery plugins to browse images. You can also create folder browser using methods of
System.IO.DirectoryInfo
(to get list of folders and files) andGridView
(Data controls.)