本文介紹了從 asp.net 獲取驗證 AD 用戶 objectGuid的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我在 ASP.NET 應用程序中使用 Windows 身份驗證.我想知道如何最好地從當前登錄的用戶那里獲取 objectGuid?
I am using windows authentication within an ASP.NET application. I am wondering how to best get the objectGuid from the currently logged in user?
問候,埃吉爾.
推薦答案
您可以使用 System.DirectoryServices 命名空間執行此操作.
You can do this with the System.DirectoryServices namespace.
Dim entry As DirectoryServices.DirectoryEntry
Dim mySearcher As System.DirectoryServices.DirectorySearcher
Dim result As System.DirectoryServices.SearchResult
Dim myEntry As DirectoryEntry
Dim domainName As String
Dim userId As String
Dim objectGuid As Guid
'Split the username into domain and userid parts
domainName = Page.User.Identity.Name.Substring(0, Page.User.Identity.Name.IndexOf(""))
userId = Page.User.Identity.Name.Substring(Page.User.Identity.Name.IndexOf("") + 1)
'Start at the top level domain
entry = New DirectoryEntry(domainName)
mySearcher = New DirectorySearcher(entry)
'Build a filter for just the user
mySearcher.Filter = ("(&(anr=" & userId & ")(objectClass=user))")
'Get the search result ...
result = mySearcher.FindOne
'... and then get the AD entry that goes with it
myEntry = result.GetDirectoryEntry
'The Guid property is the objectGuid
objectGuid = myEntry.Guid
可能有更好的方法來做到這一點,但這是有效的!
There might be a better way to do this, but this works!
這篇關于從 asp.net 獲取驗證 AD 用戶 objectGuid的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!