gpt4 book ai didi

asp.net - 从 ASP.Net BLL 类中的 Windows 身份验证获取全名

转载 作者:行者123 更新时间:2023-12-04 07:05:10 26 4
gpt4 key购买 nike

试图弄清楚如何从我的 ASP.Net 应用程序的 BLL 类中获取在 Active Directory 中输入的当前用户的全名。到目前为止,我有:

   public static string Username
{
get
{
var name = System.Security.Principal.WindowsIdentity.GetCurrent().Name;

if (name.Contains("\\"))
{
var start = name.IndexOf("\\");

if (name.Length > start)
{
name = name.Substring(start + 1);
}
}

return name;
}
}

问题是这将返回用户名,但我也需要全名。有谁知道这是否可能?

最佳答案

使用 DirectorySearcher ...

var search = new DirectorySearcher( new DirectoryEntry("LDAP://YourDomain") );
search.Filter = "(sAMAccountName=UserNameHere)"; // put the identity name here
var res = search.FindOne();
var name = res["displayName"]; // I believe this is the right property

关于asp.net - 从 ASP.Net BLL 类中的 Windows 身份验证获取全名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1215552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com