如何在 Asp.net 中使用 GZIP 文件?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有必要。只需在 IIS 设置中启用 GZIP 压缩即可。 本文详细介绍了如何执行此操作。 此 SO 讨论讨论如何验证设置是否已成功应用。
可以为静态和/或动态文件启用压缩。 ASPX 页面被认为是动态类型;启用动态内容压缩将导致它们在提供给兼容的用户代理之前被 GZIP 压缩。
要进行验证,您可以使用 http://gtmetrix.com/ 之类的工具,它会警告未压缩的资源。
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.
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.