gzip 单个 asp.net 页面
是否可以对单个 asp.net 3.5 页面进行 gzip 压缩?我的网站托管在 IIS7 上,由于技术原因,我无法在整个网站范围内启用 gzip 压缩。 IIS7 是否可以选择 gzip 单个页面,或者我是否必须覆盖 OnPreRender 并编写一些代码来压缩输出?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在一个名为 CompressionUtilities 的类中有这段代码。然后在您想要 GZIP 的页面中(或者在我的情况下,我想要 GZIP 的所有页面的共享基页)
来源:http://www.west-wind.com/weblog/posts/2007/Feb/05/More-on-GZip-compression-with-ASPNET-Content
I have this code in a class called CompressionUtilities. Then in the page you want to GZIP (or in my case, a shared base page for all the pages I want to GZIP)
Sourced here: http://www.west-wind.com/weblog/posts/2007/Feb/05/More-on-GZip-compression-with-ASPNET-Content
您可以使用Blowery HttpCompress 模块。在 web.config 中,您可以指定要从压缩中排除的文件。
You can use Blowery HttpCompress module. In the web.config you can specificy the files you want to exclude from compression.