在 mvc.net c# 中显示图像
我想在 mvc.net 中显示图像?帮助任何人:)...我通过 silverlight 控件上传图像并将它们存储在我的硬盘目录中
i want to display images in mvc.net? help anybody :)... im uploading images through silverlight control and storing them on directory at my hard disk
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您喜欢创建一个将图片提供给客户的操作,这很简单。
故事是返回一个 FileResult,它们对 FileResults 有足够的重载,因此可以返回 Stream、Byte-Array 或给出文件的路径。
GetPicturePathFor() 不是 mvc 的一部分。
i assume that you like to create an action which give the picture to the client, that's easy.
The Story is the return a FileResult, they are plenty overload for FileResults, so that can return an Stream, Byte-Array or give the path to a file.
GetPicturePathFor() is a not part of mvc.