ScriptResource.axd 路径太长

发布于 2024-12-01 07:29:39 字数 191 浏览 2 评论 0原文

这是我的问题。

我开发 Web 应用程序,并使用 IIS 来托管它们。

我还使用模块 ARR(应用程序请求路由)作为我的服务器场的代理。问题是 ARR 将页面缓存在磁盘上。我将 ScriptResource 缓存在 arr 缓存磁盘中,当我尝试删除时,访问路径太长。

有没有办法缩短脚本资源的名称?

谢谢

here is my problem.

I develop web applications, and I use IIS to host them.

I also used the module ARR (application request routing) as a proxy for my server farm. The problem is the ARR cache the pages on disk. I have ScriptResource cached in the arr cache disk, and when I try to delete the access path is too long.

Is there a way to shorten the name of the script resources?

thank you

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

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

发布评论

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

评论(1

你的背包 2024-12-08 07:29:39

如果您使用 ASP.NET 4.0,您可以使用 CDN 版本的脚本并获得额外的好处。只需将脚本管理器的 EnableCdn 属性设置为 true,您的脚本链接将如下所示:

<script src="http://ajax.microsoft.com/ajax/4.0/1/WebForms.js" type="text/javascript"></script>
<script src="http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjax.js" type="text/javascript"></script>
<script src="http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjaxWebForms.js" type="text/javascript"></script>

If you use ASP.NET 4.0 you can use CDN version of scripts and get additional benefits. Just set EnableCdn property of your script manager to true and your script links will look like this :

<script src="http://ajax.microsoft.com/ajax/4.0/1/WebForms.js" type="text/javascript"></script>
<script src="http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjax.js" type="text/javascript"></script>
<script src="http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjaxWebForms.js" type="text/javascript"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文