ASP.NET [图像处理程序]

发布于 2024-08-18 15:31:17 字数 232 浏览 1 评论 0原文

我仍在尝试从数据库加载图像。 但以我的皮肤来说,理解这些镜头并不容易: 使用处理程序 我读了这篇文章并试图制作它,但我只找到了一种方法: 将我的一些页面(在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹过旳痕迹 2024-08-25 15:31:17

这非常简单并且之前已经得到了回答。

动态渲染 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().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文