Monthly Archives: August 2017

Integrate LDAP to ASP.NET Web Application

With VS 2017 its very simple, follow the steps. Create ASP.NET web app Select authentication with “Individual User Accounts” Change AccountController as below, [AllowAnonymous] [HttpGet] public ActionResult Login() { return View(); } [AllowAnonymous] [HttpPost] [ValidateAntiForgeryToken] public async Task<ActionResult> Login(LoginViewModel model, … Continue reading

Posted in Uncategorized | Leave a comment