如何显示显示名称而不是用户名c#

本文关键字:显示 用户 何显示 | 更新日期: 2023-09-27 17:58:11

我是web开发和的新手。NET。我有一个用ASP编写的网站。NET使用C#。我应该如何使用会话显示当前用户的全名而不是用户名?请帮帮我。这是密码。

登录页面后面的代码:-

    System.Security.Principal.WindowsPrincipal username = System.Threading.Thread.CurrentPrincipal as System.Security.Principal.WindowsPrincipal;
    string userName = username.Identity.Name;
    if (username.Identity.IsAuthenticated)
    {
        Session["logged"] = userName;
        agentname.Text = Session["logged"].ToString();
    }
    else
    {
        agentname.Text = "You are not loggd in please logine first ";
    }
    if (Session["logged"] == null)
    {
        agentname.Text = "You are not loggd in please login first ";
    }
    else
    {
        agentname.Text = Session["logged"].ToString();
    }

如何显示显示名称而不是用户名c#

使用这个,它就可以工作了。我假设您使用的是windows身份验证。如果它对你有效,就把它标记为答案,这样其他人就会看到它并从中获得帮助

using System.DirectoryServices.AccountManagement;
    
string name = UserPrincipal.Current.GivenName + " " + UserPrincipal.Current.Surname;

您必须安装Windows。安全Principals NuGet,然后将其写在您的代码中:

string name = System.Security.Principal.WindowsIdentity.GetCurrent().Name