访问HttpModule中的Js和css文件
如何访问HttpModule中的Js和css文件?
How to access Js and css file in HttpModule?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何访问HttpModule中的Js和css文件?
How to access Js and css file in HttpModule?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可能需要将 .css 和 .js 扩展名关联到 ASPNET_ISAPI.DLL,否则 IIS 会简单地绕过 .net 并自行处理和提供文件。
不同 IIS 版本的方法有所不同,但这应该可以帮助您入门:http:// msdn.microsoft.com/en-us/library/bb515343.aspx
*我从未真正构建过合适的 HttpModule,所以我只是做出有根据的猜测
You may need to associate the .css and .js extentions to the ASPNET_ISAPI.DLL otherwise IIS simply bypasses .net and processes and serves the file itself.
The method is different for various IIS versions but this should get you started: http://msdn.microsoft.com/en-us/library/bb515343.aspx
*I have never actually built a proper HttpModule so I am just making an educated guess