ASP.NET Javascript 资源处理程序

发布于 2024-08-07 20:35:52 字数 154 浏览 4 评论 0原文

我想制作一个处理程序,它可以获取我需要的所有 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 技术交流群。

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

发布评论

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

评论(1

余生一个溪 2024-08-14 20:35:52

如您所知,ASP.NET 支持脚本组合:

http://msdn.microsoft.com/en-us/library/cc488552.aspx
http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=13356

另外,您也可以使用 HTTP 压缩之类的东西和良好的缓存策略:

http://www.port80software.com/products/httpzip/
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d52ff289-94d3-4085-bc4e-24eb4f312e0e.mspx

最终,同时使用这两种技术是最佳策略。

As you know, ASP.NET supports Script Combining:

http://msdn.microsoft.com/en-us/library/cc488552.aspx
http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=13356

Also, you could just use something like HTTP Compression and a good caching strategy:

http://www.port80software.com/products/httpzip/
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d52ff289-94d3-4085-bc4e-24eb4f312e0e.mspx

At the end of the day, using both techniques together is the optimal strategy.

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