当前位置:  开发笔记 > 编程语言 > 正文

全名而不是User.Identity.Name中的域ID

如何解决《全名而不是User.Identity.Name中的域ID》经验,为你挑选了1个好方法。

User.Identity.Name属性返回域登录ID.

哪个类/属性公开了实际的用户名?

对于登录提供my_domain\jdoe的Web应用程序的用户"John Doe"

**User.Identity.Name -** 
Returns : *my_domain\jdoe*

**System.Environment.UserName**
Returns: *jdoe*

哪个类/属性返回?......"John Doe"



1> tvanfosson..:

如果您正在考虑Active Directory,则需要找到与给定samAccountName对应的UserPrincipal并从中获取DisplayName属性.请注意,它可能未设置.

string fullName = null;
using (PrincipalContext context = new PrincipalContext( ContextType.Domain ))
{
    using (UserPrincipal user
            = UserPrincipal.FindByIdentity( context,
                                            User.Identity.Name ))
    {
        if (user != null)
        {
            fullName = user.DisplayName;
        }
    }
}

推荐阅读
低调pasta_730
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有