0

我正在尝试获取所有属于本周的生日和纪念日。我正在使用Directory SearcherLDAP。我是新手LDAP,我正在使用以下代码:

            string _path = "LDAP:";
            System.DirectoryServices.DirectoryEntry entry = new System.DirectoryServices.DirectoryEntry(_path);
            DirectorySearcher ds = new DirectorySearcher(entry);

            string month = DateTime.Now.Month.ToString();

            string day = DateTime.Today.Day + numDays.ToString();

             ds.Filter = "(&(objectClass=user)(description=" + month + "\\" + day +"))";
             SortOption option = new SortOption("description", System.DirectoryServices.SortDirection.Ascending);
             ds.Sort = option;
             DataSet dSet = new DataSet();
             DataTable dTable = new DataTable("Events");
             dTable.Columns.Add("birthday");
             foreach (System.DirectoryServices.SearchResult resEvent in ds.FindAll())
             {
                 System.DirectoryServices.DirectoryEntry de1 = resEvent.GetDirectoryEntry();
                 DataRow dRow = dTable.NewRow();
                 if (de1.Properties["description"].Value != null)
                 {
                     dRow["birthday"] = de1.Properties["description"].Value.ToString();

                     dTable.Rows.Add(dRow);

                 }
             }

             dSet.Tables.Add(dTable);
             return dSet;
4

1 回答 1

1

您的事件是否存储在用户的描述属性下?

没有太多关于您的属性值的详细信息。

您正在尝试使用我无权访问的用户 c#,但是通过 LDAP 查询,这有效: (&(objectClass=user)(description=09/15*))

-吉姆

于 2012-09-15T00:13:35.083 回答