AD Handle C# Code Sample 원본 : http://theagussantoso.blogspot.com/2008/01/k2-tips-and-trick-january-2008.html case : Suppose you want to get Codi's full name from active directory (login name : denallix\codi). You can use this code. public string GetFullName(string userID) { DirectoryEntry entry = new DirectoryEntry("LDAP://DENALLIX.COM"); DirectorySearcher searcher = new DirectorySearcher(entry)..