ReleaseRequestState eventHandler 中的 HttpContext.Current.CurrentHandler 为 NULL

发布于 2024-08-16 06:20:12 字数 167 浏览 3 评论 0原文

我有一个带有自定义 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 技术交流群。

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

发布评论

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

评论(1

第七度阳光i 2024-08-23 06:20:12

可能是因为您没有在 web.config 中注册 IHttpHandler 来“处理”css 文件。应该看起来像这样:

<httpHandlers>
   <add verb="*" path="*.css" type="com.MyCo.MyCssHttpHandler, com.MyCo"/>
</httpHandler>

您的 httpHandlers 部分可能已经有 aspx 等部分

Probably because you have not registered a IHttpHandler in your web.config for 'handling' css files. Should look something like this:

<httpHandlers>
   <add verb="*" path="*.css" type="com.MyCo.MyCssHttpHandler, com.MyCo"/>
</httpHandler>

Your httpHandlers section probably already has sections for aspx and such

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