如何压缩 ASP.NET 页面中的所有内容?
我有一个包含 css、javascript、axd、资源文件的页面。
我的目标是压缩所有内容,从而减小响应大小,从而缩短最终用户的响应时间。
访问 google.com,查看源代码,您可以看到谷歌如何很好地压缩其内容。这就是我想要的。
我不能依赖 IIS 进行任何压缩,因此它们需要在应用程序中完成。
是否有任何 HttpModule、代码、工具来压缩所有提到的元素/文件、删除空格等?
这怎么能做到呢?
更新: 我已经使用 JSBuilder 将 javascript 压缩到 1 个文件中,而且我正在使用 GZIP 进行内容编码,这将响应大小减少了 50-60%。
I have a page with css, javascript, axd, resource files.
My aim is to compress everything so that the response size is reduced and consequently the response time is improved for the end user.
Go to google.com, view source and you can see how google has compressed their contents nicely. that's what I want.
I can't rely on IIS to do any compression so they'd need to be done in the app.
Is there any HttpModule, code, tool to compress all the mentioned elements/files, remove white spaces, etc?
How can this be done?
Update:
I'm already using JSBuilder for compressing javascripts into 1 file, also I'm using GZIP for Content-Encoding which has reduced the response size between 50-60%.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IIS 将是执行此操作的理想场所。不要在应用程序中执行此操作。快乐的媒介:构建脚本。
IIS would be the ideal place to do it. Do not do it in the app. Happy medium: build script.