网站如何在线构建 zip 文件以供下载?
我想知道有多少像jqueryui等网站构建在线zip包供下载。 以及如何在 asp.net 中完成它?
I want to know that how many sites like jqueryui, etc. build online zip packages for download.
And how it can be done in asp.net ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要压缩/缩小 javascript 文件,您可以使用 YUI 压缩器,它具有 .NET 端口。 Google Closure Compiler 也值得检查。您可以在线使用或编译其JAR包以使用 ikvmc 的 .NET 程序集。要创建 zip 文件,您可以查看 SharpZipLib。
To compress/minify javascript files you could use the YUI compressor which has a .NET port. The Google Closure Compiler is also worth checking. You could use it online or compile its JAR package to .NET assembly using ikvmc. To create a zip file you may take a look at SharpZipLib.
我将压缩视为缩小的,而不是加密的并压缩字符串。
作为替代方案,我喜欢建议 Microsoft Ajax Minified 4.0,我将它与 sussex 一起用于非常复杂和大的 javascript 文件(包括 jQuery),以实时压缩它们/缩小它们...
http://aspnet.codeplex.com/releases/view/40584
然后将其压缩,我建议使用 SharpZipLib,还有 DotNetZip
http://dotnetzip.codeplex.com/
I take the compress as minified, and not as encrypted and compress on string.
As alternative I like to propose the Microsoft Ajax Minified 4.0, that I use it with sussex on very complicate and big javascript files (including jQuery) for real time compress them/minified them...
http://aspnet.codeplex.com/releases/view/40584
and the next to zip it, I suggest SharpZipLib but also the DotNetZip
http://dotnetzip.codeplex.com/