本文介绍了ASP.NET MVC授权的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何与MVC asp.net实现授权?

How do I achieve authorization with MVC asp.net?

推荐答案

使用的授权属性。

[Authorize]
public ActionResult MyAction()
{
   //stuff
}

您也可以在控制器上使用。可以通过在用户或角色了。

You can also use this on the controller. Can pass in users or roles too.

如果你想用多一点控制的东西,你可以尝试像this.

If you want something with a little more control, you could try something like this.

 public class CustomAuthorizeAttribute : AuthorizeAttribute
    {
        protected override bool AuthorizeCore(HttpContextBase httpContext)
        {
            string[] users = Users.Split(',');

            if (!httpContext.User.Identity.IsAuthenticated)
                return false;

            if (users.Length > 0 &&
                !users.Contains(httpContext.User.Identity.Name,
                    StringComparer.OrdinalIgnoreCase))
                return false;

            return true;
        }
    }

这篇关于ASP.NET MVC授权的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 22:30