Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have an active directory.
I checked with
VB
Dim path As String = "LDAP://196.1.1.253" & "/DC=Ajcserver"
Dim entry As New DirectoryEntry(path)


but it didn't create an object. Please help me.
Posted
Updated 4-Oct-11 3:49am
v2
Comments
Reiss 4-Oct-11 9:50am    
added pre tags for code

1 solution

Try this

DirectoryEntry entry = new DirectoryEntry("LDAP://DomainName");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900