如何防止在本地缓存 PDF?

发布于 2025-01-06 07:25:54 字数 262 浏览 1 评论 0原文

我有一个显示 PDF 的 asp.net web 表单,Stack 帮助我解决了 如何在 asp.net web 表单中显示 pdf 文件。我现在的问题是,这似乎在本地缓存 PDF 文件。每次调用它们进行更新时,我都需要从服务器重新检索它们。

PDF 文件存储在网络共享文件夹中。

如何防止这些文件在代码中缓存(或者我必须通过 IIS 或共享文件夹执行此操作)?

I have an asp.net webform that displays a PDF, Stack helped me with that How to display a pdf file in asp.net web-form. My problem now is that this seems to cache the PDF files locally. I need them to be freshly retrieved from the server each time they're called to account for updates.

The PDF files are stored in a network shared folder.

How can I prevent these files from caching in code (or do I have to do from IIS or the shared folder)?

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

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

发布评论

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

评论(1

笔落惊风雨 2025-01-13 07:25:54

你尝试过下面的代码吗?

protected void Page_Load(object sender, EventArgs e)
{
    Response.Cache.SetExpires(DateTime.Now.AddDays(-1));
}

Did you try with below code.

protected void Page_Load(object sender, EventArgs e)
{
    Response.Cache.SetExpires(DateTime.Now.AddDays(-1));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文