ASP.NET Javascript 资源处理程序
我想制作一个处理程序,它可以获取我需要的所有 Javascript 文件并压缩和合并它们,就像 asp.net 的 scriptmanager 所做的那样。 这可能吗?我想到了 .ashx 处理程序,但我不确定这是否有效。
如果您也可以使用 css 文件执行此操作,那就太酷了。
I would like to make a Handler that takes all of my Javascript files i need and compresses and merges them, something like the scriptmanager of asp.net does.
Is this possible? i thought on an .ashx handler, but i'm not sure if this works..
would be cool if you also could do this with the css files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如您所知,ASP.NET 支持脚本组合:
另外,您也可以使用 HTTP 压缩之类的东西和良好的缓存策略:
最终,同时使用这两种技术是最佳策略。
As you know, ASP.NET supports Script Combining:
Also, you could just use something like HTTP Compression and a good caching strategy:
At the end of the day, using both techniques together is the optimal strategy.