日期注释[授权]不在ASP.NET MVC中工作

时间:2016-02-02 14:35:46

标签: c# asp.net asp.net-mvc asp.net-mvc-4 active-directory

我正在尝试为活动目录组部署验证登录。如下图所示

// Control with groups restriction of the ad
[Authorize (Roles = "Financial, ADM")]
public class FinanceiroController: Controller
{

}

我正在使用FormsAuthentication登录:

Principal User = autenticacao.Autenticar (login, password);
if (User! = null)
{
FormsAuthentication.SetAuthCookie (login, true);
}

问题是我无法使用用户访问同一个控制器q是ADM组,有人帮帮我吗?

0 个答案:

没有答案