詳解C#使用AD(Active Directory)驗證內(nèi)網(wǎng)用戶名密碼
更新時間:2017年10月25日 15:09:35 投稿:lqh
這篇文章主要介紹了詳解C#使用AD(Active Directory)驗證內(nèi)網(wǎng)用戶名密碼的相關(guān)資料,希望通過本文能幫助到大家,讓大家實現(xiàn)這樣的功能,需要的朋友可以參考下
詳解C#使用AD(Active Directory)驗證內(nèi)網(wǎng)用戶名密碼
1. 連到內(nèi)網(wǎng),找到AD的domain地址
nslookup set types=all _ldap._tcp
2. 驗證AD的函數(shù)
public bool ADLogin(string userName, string password)
{
// sample :
// LDAP://xxx.com
string domain = System.Configuration.ConfigurationManager.AppSettings["AD_Domain"];
try
{
DirectoryEntry entry = new DirectoryEntry(domain, userName, password);
object obj = entry.NativeObject;
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = string.Format("(SAMAccountName={0})", userName);
search.PropertiesToLoad.Add("cn");
SearchResult result = search.FindOne();
if (result == null)
return false;
}
catch (Exception ex)
{
log.Error(ex);
return false;
}
return true;
}
如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關(guān)文章
C#中new和override的區(qū)別個人總結(jié)
這篇文章主要介紹了C#中new和override的區(qū)別個人總結(jié),本文以問答的方式講解了new和override的區(qū)別,需要的朋友可以參考下2015-06-06
asp.net獲取系統(tǒng)當(dāng)前時間的方法詳解
這篇文章主要介紹了asp.net獲取系統(tǒng)當(dāng)前時間的方法,較為詳細(xì)的分析了C#日期與時間操作所涉及的相關(guān)函數(shù)與使用技巧,需要的朋友可以參考下2016-06-06

