在 Gridview 中更快地加载图像

发布于 09-05 09:30 字数 118 浏览 6 评论 0原文

我有一个网格视图,它显示所有员工的数据及其图像(存储在数据库中)。 当我单击排序、分页或重新加载时,图像需要更多时间才能完全渲染。 我正在使用 httphandler 将图像显示为流。 有什么方法可以加快图像加载速度吗?

I have a gridview which displays data for all employees and their images (stored in database).
The images take more time to render completely when i click sort or paging or reload.
I'm using httphandler to display image as stream.
Is there a way i can speed up this image loading?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清引2024-09-12 09:30:02

您可以将字节数组缓存在 HttpContext.Current.Cache 中,并从 IHttpHandler 中的缓存返回它们。

You can cache the byte arrays in HttpContext.Current.Cache and return them from the cache in the IHttpHandler.

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