程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> ASP.NET MVC 中實現基於角色的權限控制的處理方法

ASP.NET MVC 中實現基於角色的權限控制的處理方法

編輯:ASP.NET基礎

[Authorize]
public ActionResult Index()

標記的方式,可以實現所標記的ACTION必須是認證用戶才能訪問;

通過使用

[Authorize(Users="username")]

的方式,可以實現所標記的ACTION必須是某個具體的用戶才能訪問,以上兩種方式使用起來非常方便,在NeedDinner示例程序中已有具休的實現過程,

但是,我們在實際的應用中所使用的大都是基於角色(Roles)的認證方式,NeedDinner中卻未給出,本文給出具體實現(基於ASP.NET Forms驗證)過程:

step 1
在完成UserName和Password認證後,向客戶端寫入認證Cookie

代碼
復制代碼 代碼如下:
        FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(
            1,
            userName,
            DateTime.Now,
            DateTime.Now.AddMinutes(20),
            false,
            "admin"//寫入用戶角色
            );

        string encryptedTicket = FormsAuthentication.Encrypt(authTicket);

        System.Web.HttpCookie authCookie = new System.Web.HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket);
        System.Web.HttpContext.Current.Response.Cookies.Add(authCookie);

step 2
在Global.asax.cs文件中加入以下代碼,用於在用戶登陸網站時讀取Cookie

代碼
復制代碼 代碼如下:
protected void Application_AuthenticateRequest(Object sender, EventArgs e)
    {
        HttpCookie authCookie = Context.Request.Cookies[FormsAuthentication.FormsCookieName];
        if (authCookie == null || authCookie.Value == "")
        {
            return;
        }
        FormsAuthenticationTicket authTicket = null;
        try
        {
            authTicket = FormsAuthentication.Decrypt(authCookie.Value);
        }
        catch
        {
            return;
        }
        string[] roles = authTicket.UserData.Split(new char[] { ';' });
         if (Context.User != null)
        {
            Context.User = new System.Security.Principal.GenericPrincipal(Context.User.Identity, roles);
        }
    }

step 3

這樣以來,就可以使用實現以下效果
復制代碼 代碼如下:
  [Authorize(Roles="admin")]
    public ActionResult Index(int ? page)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved