ReleaseRequestState eventHandler 中的 HttpContext.Current.CurrentHandler 为 NULL
我有一个带有自定义 ReleaseRequestState eventHandler 的模块。在此 eventHandler 中,我使用 HttpContext.Current.CurrentHandler,并且刚刚透露,在某些情况下(特别是 - 对于 *.css 文件)它可以为 NULL。这是怎么回事?如何正确解决?
I have a module with custom ReleaseRequestState eventHandler. In this eventHandler i use HttpContext.Current.CurrentHandler, and just now revealed that in some situations (particularly - for *.css files) it can be NULL. How this can be, and how it can be correctly workarounded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是因为您没有在 web.config 中注册 IHttpHandler 来“处理”css 文件。应该看起来像这样:
您的 httpHandlers 部分可能已经有 aspx 等部分
Probably because you have not registered a IHttpHandler in your web.config for 'handling' css files. Should look something like this:
Your httpHandlers section probably already has sections for aspx and such