避免 http handler 终止页面生命周期
我正在构建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
顾名思义,处理程序必须完全处理请求。如果您希望检查和过滤每个请求,则需要使用
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.