国产女人被狂躁到高潮小说,亚洲日韩一区二区三区,色窝窝无码一区二区三区成人网站 ,丰满岳乱妇在线观看中字无码

400-800-9385
網站建設資訊詳細

ASP.NET MVC3如何實現自定義權限系統判定和實現

發表日期:2013-09-21 00:00:00   作者來源:方維網絡   瀏覽:6252   標簽:ASP.NET    MVC3    

    ASP.NET本身擁有membership角色權限系統,但是這個自帶的系統不夠靈活和強大,有時候操作起來比較繁瑣,這里方維網絡介紹一種如何根據控制器和方法自動判定權限,簡單方便。

    首先是定義一個類繼承ActionFilterAttribute類,然后重新方法OnActionExecuting  編寫如下代碼

    public override void OnActionExecuting(ActionExecutingContext filterContext)

        {
            if (!filterContext.HttpContext.User.Identity.IsAuthenticated)
            {
                //沒有登錄執行的操作
            }
            else
            {
   
                //判斷是否存在角色
                FormsIdentity user = (FormsIdentity)HttpContext.Current.User.Identity;
 
                var au = db.AdminUser.Where(a => a.username == user.Name).ToList();
                if (au.Count > 0)
                {
                    // string purview= au[0].group.purview;
                    bool is_authorize = true;
                    string error_msg = "沒有權限訪問!";
                    string model = filterContext.RouteData.Values["controller"].ToString();
                    string action = filterContext.RouteData.Values["action"].ToString();
 
                    BLLAdminUser admin_user = new BLLAdminUser();
                    string purview=admin_user.getCheckPurview(model, action);//判斷權限
                    string mypurview = admin_user.getMyPurview();
                    is_authorize=admin_user.inPurview(purview, mypurview);
                    if (!is_authorize)
                    {
                         //如果驗證不通過執行的方法
                    }
 
                }
 
            }
          
        }


    然后在控制器或方法前面加上[Authorize]驗證標記就行了。

如沒特殊注明,文章均為方維網絡原創,轉載請注明來自http://www.sdlwjx666.com/news/1993.html