|
|
|
รบกวนสอบถามการเขียน C# ต่อกับระบบ active directory(AD)หน่อยครับ |
|
|
|
|
|
|
|
ผมมี Code ส่วนของการ Login ตรวจสอบ User/Password ครับ
ASP.NET User Authentication Active Directory (AD)
|
|
|
|
|
Date :
2013-05-27 14:38:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Log In AD only -_-"
นอกนั้น ไม่เคยทำ 55555+
Code (C#)
public bool ValidateAD(string Domain, string User, string Password)
{
try
{
PrincipalContext pc = new PrincipalContext(ContextType.Domain, Domain);
return pc.ValidateCredentials(User, Password);
}
catch (Exception)
{
}
return false;
}
|
ประวัติการแก้ไข 2013-05-27 14:49:16
|
|
|
|
Date :
2013-05-27 14:48:53 |
By :
fonfire |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2013-05-27 16:51:17 |
By :
offonepoint |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-05-27 16:52:35 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|