my system admin gave me this:
Domain : capp.net USER : capp\\dhr2
Pass : admin@12345
what will the connection string be?
I am very very new t
Whenever I've accessed AD from .net I've done the following:
var directoryEntry = new DirectoryEntry("LDAP://capp.net");
directoryEntry.Username = "capp\dhr2";
directoryEntry.Password = "admin@12345";
Then you can query "AD" using the DirectorySearcher.
var directorySearcher = new DirectorySearcher(directoryEntry);
...