如何使用 wwScriptCompressionModule? 使用 asp.net 进行 gzip 压缩
好的,我下载了 WestWind Ajax 控件,并将其添加到我的 web.config 中:
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="wwScriptCompressionModule" type="Westwind.Web.Controls.wwScriptCompressionModule,Westwind.AjaxToolKit"/>
</httpModules>
我正在我的母版页 .cs 文件中注册我的 js:
Page.ClientScript.RegisterClientScriptInclude(typeof(name_of_masterpage), "scripts", ResolveUrl("~/js/all_script.js"));
现在,据我了解,它应该可以工作,但它不能? 我可能错过了一些显而易见的东西,但我似乎无法在任何地方找到简单的教程或解释。 我只使用 IIS 6。
非常感谢。
Ok, I downloaded the WestWind Ajax Controls, and I added this to my web.config:
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="wwScriptCompressionModule" type="Westwind.Web.Controls.wwScriptCompressionModule,Westwind.AjaxToolKit"/>
</httpModules>
I am registering my js like this in my masterpage .cs file:
Page.ClientScript.RegisterClientScriptInclude(typeof(name_of_masterpage), "scripts", ResolveUrl("~/js/all_script.js"));
Now from what I understand, it should be working but it is not? I am likely missing something that is glaringly obvious, but I can't seem to find a simple tutorial or explanation anywhere. I am only using IIS 6.
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该像我想的那样工作
或其他方法
希望这有帮助
this should work as i think
or another method
hope this helps