populate a droplist with active directory users

  • Thread starter Thread starter James
  • Start date Start date
J

James

I was wondering if there is a way to populate a drop down
list with the active directory user? So far I have found
the namespace System.DirectoryServices but I am not sure
how to access the users and attach them to a droplist.
Thanks in advace for the help.
 
James,

I don't know much about AD, but I think that you are going to have to
use the DirectorySearcher class in the System.DirectoryServices namespace to
get the list you are looking for, and then populate the items one by one.

Hope this helps.
 
Back
Top