ASP.Net MVC:如果经过身份验证的用户不满足条件,如何从任何页面重定向他们

发布于 2024-09-29 07:55:10 字数 151 浏览 8 评论 0 原文

如果任何经过身份验证的用户不满足条件,我需要将他们重定向到特定页面。

我已经实现了一个所有控制器都继承自的基本控制器。在其 OnActionExecuting 覆盖中,我计划执行条件测试,并在不满足条件时重定向到特定操作。

这是执行此操作的最明智的方法吗?

I need to redirect any Authenticated user to a specific page if they do not satisfy a condition.

I have implemented a base controller from which all controllers inherit. In its OnActionExecuting override I plan to perform my test for the condition and redirect to the specific action if the condition is not met.

Is this the most sensible way to perform this operation?

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

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

发布评论

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

评论(2

泅渡 2024-10-06 07:55:10

如果您计划筛选每个操作,则可以这样做,或者您可以使用 自定义操作过滤器 a la HandleError 过滤器。

使用过滤器,您可以访问整个请求流,并且可以执行不同的操作。您还可以堆叠过滤器,甚至可以对它们进行排序,以便它们按特定顺序执行。操作过滤器也可以应用于类级别,这意味着它将应用于您的每个操作。

You could do it that way if you're planning on every action being screened or you could go the route of using custom Action Filters a la the HandleError filter.

With filters you have access to the entire request stream and you can perform different actions. You can stack filters as well and even order them so they're executed in a specific order. Action filters can be applied at the class level too which means it will be applied to every action for you.

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