vote up 1 vote down star
2

I've seen this question posted similarly in the past, I was hoping someone can point me in the right direction, the User.Identity.Name class returns the domain login.

Which class exposes the actual name?

For user "John Doe" who logs into the web application supplying my_domain\jdoe

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

System.Environment.UserName Returns: jdoe

Which class returns

"John Doe"?

flag

4 Answers

vote up 1 vote down
using System.DirectoryServices;


public static string GetFullName(string strLogin)
    {
        string str = "";
        string strDomain;
        string strName;

        // Parse the string to check if domain name is present.
        int idx = strLogin.IndexOf('\\');
        if (idx == -1)
        {
            idx = strLogin.IndexOf('@');
        }

        if (idx != -1)
        {
            strDomain = strLogin.Substring(0, idx);
            strName = strLogin.Substring(idx + 1);
        }
        else
        {
            strDomain = Environment.MachineName;
            strName = strLogin;
        }

        DirectoryEntry obDirEntry = null;
        try
        {
            obDirEntry = new DirectoryEntry("WinNT://" + strDomain + "/" + strName);
            System.DirectoryServices.PropertyCollection coll = obDirEntry.Properties;
            object obVal = coll["FullName"].Value;
            str = obVal.ToString();
        }
        catch (Exception ex)
        {
            str = ex.Message;
        }
        return str;
    }

and the you can just call

var strJonDoeName = GetFullName(User.Identity.Name)

code mock it from here

link|flag
vote up 3 vote down

If you are thinking Active Directory, you'll need to find the UserPrincipal that corresponds to the given samAccountName and get the DisplayName property from it. Note that it may not be set.

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;
        }
    }
}
link|flag
When I try this on my local machine (debug in VS) it works. When I deploy to my server it get NETWORK SERVICE. It must be a setting somewhere but I can't figure it out. Any ideas? – Rick Mar 20 at 2:08
Did you try my sample using User.Identity.Name as well as Environment.UserName? For a web app, I think you'll need to use the former (I'll update my post). – tvanfosson Mar 20 at 10:39
vote up 4 vote down

Sounds like instead of the login name, you are after the display name of an Active Directory user account. What you might want to do is to do an AD search (DirectorySearcher) and get the display name from the search result property.

I'm assuming that you are in an AD environment, since you tagged the question adsi.

Note: If you are working with .NET 3.5, you might want to look at tvanfosson's post.

link|flag
Use the new UserPrincipal if you have .Net 3.5 in the System.DirectoryServices.AccountManagement namespace instead. It's a much better interface to the directory objects. It exposes more properties that you used to have to get the IADsUser object for. – tvanfosson Jan 30 at 0:36
Actually, I think it was new in .Net 3.0, not 3.5. – tvanfosson Jan 30 at 0:37
Thanks tvanfosson! My job working with DirectoryServices ended with .NET 2.0. I'm working in a different area now and did not look at what was new in 3.5. – barneytron Jan 30 at 0:46
vote up 1 vote down

The IIdentity interface is that which provides the Name property on User.Identity. The IIdentity interface can be implemented on any number of classes which know how to lookup users from a data-store (SQL Server, Active Directory, etc).

There is no property of the IIdentity interface which provides "John Doe". If that information is located in your data-store then you'll need to use the tools specific to that data-store to access it.

That said, its entirely possible that the object which is returned by User.Identity has a property which contains "John Doe" that you might be able to access through some other interface besides IIdentity (our custom IIdentity implementation does this, for example).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.