在我的ASP.NET应用程序我从Active Directory获取信息。 我必须让信息有关使用GUID信息(例如:a28a6a34dsfdsf57d9e54f945a241)的用户,但我不知道我该如何使用过滤器正确此搜索:/
例如,如果我搜索到用户名字:
DirectoryEntry Entry = new DirectoryEntry("LDAP://" + "Domain");
string filter = "(&(objectClass=user)(objectCategory=person)(cn=" + txtBenutzer.Text + "*))";
DirectorySearcher Searcher = new DirectorySearcher(Entry, filter);
var q = from s in Searcher.FindAll().OfType<SearchResult>()
select new
{
//GetProperty(s, "objectGUID"),
Benutzer = GetProperty(s, "sAMAccountName"),
eMail = GetProperty(s, "mail"),
Vorname = GetProperty(s, "givenName"),
Nachname = GetProperty(s, "sn"),
Telefon = GetProperty(s, "telephoneNumber"),
UserID = s.GetDirectoryEntry().NativeGuid
};
this.myListView.DataSource = q;
this.myListView.DataBind();
现在我需要与GUID的过滤器,我可以找到一个只有在AD用户。 该GUID这个搜索我有一个字符串userid =会话[“用户名”]。的toString()
塔拉索夫