我正在尝试为活动目录组部署验证登录。如下图所示
// 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组,有人帮帮我吗?