避免 http handler 终止页面生命周期

发布于 2024-11-29 04:10:59 字数 164 浏览 2 评论 0原文

我正在构建一个 ASP.NET Web 应用程序;我使用 http 处理程序作为过滤器,因为我希望在条件成立时将用户重定向到某个页面。问题是,如果条件为 false,则页面不会加载,因为 http 处理程序会终止页面本身的生命周期……那么,有什么方法可以避免这种情况并正确加载页面,或者我应该使用另一个对象来筛选?

I’m building an asp.net web application; I’m using an http handler as a filter, because I want the user to be redirected to a certain page if a condition is true. Problem is if the condition is false the page doesn’t load because the http handlers kill the life cycle of the page itself…so, is there any way to avoid this and to load the page properly or am I supposed to use another object to filter?

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

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

发布评论

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

评论(1

五里雾 2024-12-06 04:10:59

顾名思义,处理程序必须完全处理请求。如果您希望检查和过滤每个请求,则需要使用 HttpModule

可以找到一个很好的“入门”指南 此处

A handler, as its name suggests, must completely handle the request. If you want every request to be examined and filtered, you want to use an HttpModule.

A good 'getting started' guide can be found here.

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