如何在 Asp.net 中使用 GZIP 文件?

发布于 2024-12-29 22:07:31 字数 153 浏览 1 评论 0原文

我想使用 GZIP 文件来减少页面加载时间。 我已将所有 JS 文件转换为 GZIP 文件。

现在我想知道如何设置 IIS(我使用的是 IIS 7)才能正常工作。

第二件事我如何在“我的 Asp.net 页面”中调用 GZIP 文件?

提前致谢

I want to use GZIP files to reduce the page load time.
I have Converted All my JS files in GZIP files.

Now I want to know How Do I set IIS (I am using IIS 7) that this can be work.

Second thing How do i call GZIP file in My Asp.net Pages as well?

Thanks in Advance

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

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

发布评论

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

评论(1

转瞬即逝 2025-01-05 22:07:31

我已将所有 JS 文件转换为 GZIP 文件。

没有必要。只需在 IIS 设置中启用 GZIP 压缩即可。 本文详细介绍了如何执行此操作。 此 SO 讨论讨论如何验证设置是否已成功应用。

第二件事我如何在我的 Asp.net 页面中调用 GZIP 文件

可以为静态和/或动态文件启用压缩。 ASPX 页面被认为是动态类型;启用动态内容压缩将导致它们在提供给兼容的用户代理之前被 GZIP 压缩。

要进行验证,您可以使用 http://gtmetrix.com/ 之类的工具,它会警告未压缩的资源。

I have Converted All my JS files in GZIP files.

Not necessary. Just enable GZIP compression in IIS settings. This article gives details on how to do so. This SO discussion talks about how to validate that the settings were successfully applied.

Second thing How do i call GZIP file in My Asp.net Pages as well

Compression can be enabled for static and/or dynamic files. ASPX pages are considered a dynamic type; enabling dynamic content compression will cause them to be GZIP'd before they are served to a compatible user agent.

To validate, you can use a tool like http://gtmetrix.com/ which will warn about uncompressed resources.

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