How make the search
-
Now i have a problem to search pdl(group) in the ldap server, i can search the pdl(group) with the following filter string filter = "(&(objectClass=group)(displayname=" + displayname + "))" but can only filter out with the whole display name if i want to search with partial name, what should i do??
-
Now i have a problem to search pdl(group) in the ldap server, i can search the pdl(group) with the following filter string filter = "(&(objectClass=group)(displayname=" + displayname + "))" but can only filter out with the whole display name if i want to search with partial name, what should i do??
My LDAP is a little rusty, but IIRC it's:
(&(objectClass=group)(displayName=SomeNa\*))
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
My LDAP is a little rusty, but IIRC it's:
(&(objectClass=group)(displayName=SomeNa\*))
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007Thanks very much!