ASP.NET [图像处理程序]
我仍在尝试从数据库加载图像。 但以我的皮肤来说,理解这些镜头并不容易: 使用处理程序 我读了这篇文章并试图制作它,但我只找到了一种方法: 将我的一些页面(在 webconf 中)映射到此处理程序(ashx)
我需要在我的页面中使用它
谢谢你。
I'm still trying to load my image from database.
But that's not so easy with my skins to understand the shots :
Using Handler
I read this stuff and was on trying to make it but I found only one method :
Mapping some my page (in webconf) to this handler (ashx)
I need to use it in my page in my
and Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这非常简单并且之前已经得到了回答。
动态渲染 asp:来自 ASP.NET 中 BLOB 条目的图像
大多数新手会感到困惑的是,图像数据从未分配给 ASP.NET 图像控件的任何属性。相反,图像的 src 被分配给图像处理程序的 url。然后,图像处理程序通过 Response.Write() 将数据写入响应。
it's pretty straight forward and has been answered before.
Dynamically Rendering asp:Image from BLOB entry in ASP.NET
where most novices get confused is that the image data is never assigned to any property of the asp.net image control. instead the src of the image is assigned to the url of the image handler. The image handler then writes the data to the response via Response.Write().