asp.net Web 应用程序 - 检查 Active Directory 组中是否存在用户

发布于 2024-11-10 05:29:30 字数 73 浏览 0 评论 0原文

我有 asp.net Web 应用程序,如何检查当前登录的用户(客户端)是否在特定的 Active Directory 组中。 谢谢

I have asp.net web app, how to check the current logged in user (client) is in specific Active directory group.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

智商已欠费 2024-11-17 05:29:30

请尝试以下方法。根据自己的需要改一下就可以了...

public List<string> GetGroupNames(string userName)
{
    var pc = new PrincipalContext(ContextType.Domain);
    var src = UserPrincipal.FindByIdentity(pc, userName).GetGroups(pc);
    var result = new List<string>();
    src.ToList().ForEach(sr => result.Add(sr.SamAccountName));
    return result;
}

Try this the following method. Just change it according to your needs...

public List<string> GetGroupNames(string userName)
{
    var pc = new PrincipalContext(ContextType.Domain);
    var src = UserPrincipal.FindByIdentity(pc, userName).GetGroups(pc);
    var result = new List<string>();
    src.ToList().ForEach(sr => result.Add(sr.SamAccountName));
    return result;
}
塔塔猫 2024-11-17 05:29:30

试试这个(仅适用于 ASP.NET,但类似的调用可用于 Windows 应用程序)

    if (HttpContext.Current.User.IsInRole("RoleName"))
    {
        return true;
    }
    else
    {
        return false;
    }

希望这会有所帮助
哈维·萨瑟

Try this (Only works in ASP.NET but similar calls are available for windows apps)

    if (HttpContext.Current.User.IsInRole("RoleName"))
    {
        return true;
    }
    else
    {
        return false;
    }

Hope this helps
Harvey Sather

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文