public ActionResult Login(string UserName, string Password, string returnUrl)
{
string user = UserName + domain;
//string pathStr = string.Format("LDAP://{0}{1}{2}", ip, port, baseDN);
try
{
DirectoryEntry de = new DirectoryEntry("LDAP://192.168.64.128:389/OU=MyMemberServers,DC=eSecure,DC=com", user, Password);
Guid guid = de.Guid;
//DirectorySearcher ds = new DirectorySearcher(de);
de.Dispose();
return View("ChangePassword");
}
catch (Exception)
{
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, ip, inputBaseDN, admUser+domain, admPwd);
UserPrincipal userObj = UserPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, UserName);
if (userObj != null)
{
//帳號停用,userObj.Enabled可能為null true false
bool? isEnable = userObj.Enabled;
//isEnable = null;
if (!isEnable.HasValue)
{
ViewBag.Message = "系統發生錯誤,請聯絡系統管理員";
}
else if ((bool)!isEnable)
{
ViewBag.Message = "帳號已停用,請聯絡系統管理員";
}
else
{
bool isLockedOut = userObj.IsAccountLockedOut();
if (isLockedOut)
{
ViewBag.Message = "帳號已被鎖定,請聯絡系統管理員";
}
else
{
Int32 badLogonCount = userObj.BadLogonCount;
ViewBag.Message = "密碼錯誤" + badLogonCount + "次,錯誤3次帳號即被鎖定";
}
}
return View("Login");
}
ctx.Dispose();
ViewBag.Message = "查無此帳號";
return View("Login");
}
}
2015年8月12日 星期三
.NET MVC - Active Directory Login 【AD登入驗證】Windows Server 2012 R2
2015年7月30日 星期四
2015年7月15日 星期三
photoshop CS 6 Portable 疑難雜症
1.無法將圖片直接拖曳到ps編輯畫面內:
    開始 輸入 regedit HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > Policies > System 找到EnableLUA 將1改成0,然後重啟電腦
2.變更語系: 中文 > 英文
    ~\Adobe\Adobe Photoshop CS5\Locales\zh_TW\Support Files 找到tw10428.dat的檔案後,把它砍掉
訂閱:
意見 (Atom)