22

我正在编写一个使用 Windows 身份验证的 Web 应用程序,我可以很高兴地使用以下内容获取用户的登录名:

 string login = User.Identity.Name.ToString();

但我不需要他们的登录名,我想要他们的 DisplayName。我已经敲了几个小时的头了...

我可以通过 Web 应用程序访问我组织的 AD 吗?

4

5 回答 5

29

这个怎么样:

private static string GetFullName()
    {
        try
        {
            DirectoryEntry de = new DirectoryEntry("WinNT://" + Environment.UserDomainName + "/" + Environment.UserName);
            return de.Properties["displayName"].Value.ToString();
        }
        catch { return null; }
    }
于 2008-10-29T13:01:40.060 回答
8

请参阅相关问题:Active Directory:检索用户信息

另请参阅:Howto:(几乎)通过 C# 在 Active Directory 中的所有内容,更具体地说,“枚举对象的属性”部分。

如果您有连接到域中组的路径,以下代码段可能会有所帮助:

GetUserProperty("<myaccount>", "DisplayName");

public static string GetUserProperty(string accountName, string propertyName)
{
    DirectoryEntry entry = new DirectoryEntry();
    // "LDAP://CN=<group name>, CN =<Users>, DC=<domain component>, DC=<domain component>,..."
    entry.Path = "LDAP://...";
    entry.AuthenticationType = AuthenticationTypes.Secure;

    DirectorySearcher search = new DirectorySearcher(entry);
    search.Filter = "(SAMAccountName=" + accountName + ")";
    search.PropertiesToLoad.Add(propertyName);

    SearchResultCollection results = search.FindAll();
    if (results != null && results.Count > 0)
    {
        return results[0].Properties[propertyName][0].ToString();
    }
    else
    {
            return "Unknown User";
    }
}
于 2008-10-29T12:47:18.310 回答
5

用这个:

string displayName = UserPrincipal.Current.DisplayName;

于 2013-04-03T08:56:45.067 回答
4

万一有人在乎,我设法破解了这个:

      /// This is some imaginary code to show you how to use it

      Session["USER"] = User.Identity.Name.ToString();
      Session["LOGIN"] = RemoveDomainPrefix(User.Identity.Name.ToString()); // not a real function :D
      string ldappath = "LDAP://your_ldap_path";
      // "LDAP://CN=<group name>, CN =<Users>, DC=<domain component>, DC=<domain component>,..."


      Session["cn"] = GetAttribute(ldappath, (string)Session["LOGIN"], "cn");
      Session["displayName"] = GetAttribute(ldappath, (string)Session["LOGIN"], "displayName");
      Session["mail"] = GetAttribute(ldappath, (string)Session["LOGIN"], "mail");
      Session["givenName"] = GetAttribute(ldappath, (string)Session["LOGIN"], "givenName");
      Session["sn"] = GetAttribute(ldappath, (string)Session["LOGIN"], "sn");


/// working code

public static string GetAttribute(string ldappath, string sAMAccountName, string attribute)
    {
        string OUT = string.Empty;

        try
        {
            DirectoryEntry de = new DirectoryEntry(ldappath);
            DirectorySearcher ds = new DirectorySearcher(de);
            ds.Filter = "(&(objectClass=user)(objectCategory=person)(sAMAccountName=" + sAMAccountName + "))";

            SearchResultCollection results = ds.FindAll();

            foreach (SearchResult result in results)
            {
                OUT =  GetProperty(result, attribute);
            }
        }
        catch (Exception t)
        {
            // System.Diagnostics.Debug.WriteLine(t.Message);
        }

        return (OUT != null) ? OUT : string.Empty;
    }

public static string GetProperty(SearchResult searchResult, string PropertyName)
    {
        if (searchResult.Properties.Contains(PropertyName))
        {
            return searchResult.Properties[PropertyName][0].ToString();
        }
        else
        {
            return string.Empty;
        }
    }
于 2008-11-11T13:00:25.123 回答
2

如果您有兴趣,有一个用于Linq to AD的 CodePlex 项目。

Paul Kimmel所著的LINQ Unleashed for C#一书中也介绍了这一点——他使用上述项目作为他的起点。

不隶属于任何一个来源 - 我最近刚读过这本书

于 2008-10-29T13:17:30.340 回答