码迷,mamicode.com
首页 > Web开发 > 详细

MVC权限控制

时间:2016-12-03 08:01:02      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:set   cat   str   identity   form   protect   nts   text   first   

基本方法是重写AuthorizeAttribute类的AuthorizeCore方法

protected override bool AuthorizeCore(HttpContextBase httpContext)

{

string currentRole = GetRole(httpContext.User.Identity.Name);

if (Roles.Contains(currentRole))

return true;

return base.AuthorizeCore(httpContext);

}

 

private string GetRole(string name)

{

Model1 db = new Model1();

student newstudent = db.Students.First(m => m.name == name);

return newstudent.name;

}

 

在登录的时候需要写入name信息

FormsAuthentication.SetAuthCookie(stu.name, false);

 

最后在需要控制的action前加上

[MyAuthAttribute2(Roles = "****")]

MVC权限控制

标签:set   cat   str   identity   form   protect   nts   text   first   

原文地址:http://www.cnblogs.com/webenh/p/6127913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!