System.DirectoryServices.DirectorySearcher mySearcher = new System.DirectoryServices.DirectorySearcher(entry);
mySearcher.Filter = ("(&(objectClass=user)(extensionattribute2=" + number + "))");
extensionattribute2 is the employee ID and i would like to know which one it is for the login.
Thank you in advance
Al