Mega Code Archive

 
Categories / ASP.Net / File Directory
 

DirectoryServices DirectoryEntry

<%@ Page %> <script Language="vb" runat="server"> Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)     Dim Entry As System.DirectoryServices.DirectoryEntry     Try     Entry = New System.DirectoryServices.DirectoryEntry("WinNT://DomainName")     Catch         'Error message     Finally         Entry.Close()     End Try End Sub </script>