VB.Net中使用LDAP验证基于微软AD的登录用户

来源:互联网 发布:淘宝旺旺账号申请 编辑:程序博客网 时间:2024/05/14 17:09

Imports System.DirectoryServicesImports System.Security.Principal

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click        Dim r As Boolean = GetUserSID("MyADServer", "username", "password").Length > 0        MsgBox(r)    End Sub    Public Shared Function GetUserSID(ByVal ldapServer As String, ByVal userName As String, ByVal password As String) As String        Dim strPath As String        If ldapServer.IndexOf("."c) <> -1 Then            strPath = String.Format("LDAP://{0}", ldapServer)        Else            strPath = String.Format("WinNT://{0}/{1}, user", ldapServer, userName)        End If        Dim entry As New DirectoryEntry(strPath, userName, password)        Try            Return New SecurityIdentifier(entry.Properties("objectSid").Value, 0).Value        Catch            Return ""        Finally            entry.Dispose()        End Try    End Function


原创粉丝点击