ASP.Net MVC:如果经过身份验证的用户不满足条件,如何从任何页面重定向他们
如果任何经过身份验证的用户不满足条件,我需要将他们重定向到特定页面。
我已经实现了一个所有控制器都继承自的基本控制器。在其 OnActionExecuting 覆盖中,我计划执行条件测试,并在不满足条件时重定向到特定操作。
这是执行此操作的最明智的方法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您计划筛选每个操作,则可以这样做,或者您可以使用 自定义操作过滤器 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.
我会在您的操作上使用属性。
ASP.NET MVC Forms 身份验证 + 授权属性 + 简单角色
I would use attributes on your Actions.
ASP.NET MVC Forms Authentication + Authorize Attribute + Simple Roles