您可以删除响应过滤器吗?

发布于 2024-08-23 16:29:49 字数 100 浏览 6 评论 0原文

我有一个 HttpModule,在其中查找内容类型,然后对响应应用一些过滤器。在某些情况下,我不想应用这些过滤器之一,但直到稍后的 page_load 事件才确定。有没有办法去掉滤镜??

I have an HttpModule where I lookup the content type and then apply some filters to the response. There are some instances where I don't want to apply one of these filters but that isn't determined until the page_load event later on. Is there any way to remove a filter??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜灵血窟げ 2024-08-30 16:29:49

...我想答案是,不...

...I think the answer is, No...

夜巴黎 2024-08-30 16:29:49

这应该有效:

Response.Filter = null;

它删除了所有过滤器,而不仅仅是一个,但对我有用。

This should work:

Response.Filter = null;

It removes all filters, not just one, but worked for me.

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