How can keep the user logged in even after the browser has closed with Identity ASP.NET MVC framework?
问题 Currently, each time the user browser closes, he/she will have to login again. When they login, this is the code that I use to sign them in Identity. SignInManager.SignIn(user, false, false); Here is how my Authentication is configured today public void ConfigureAuth(IAppBuilder app) { app.CreatePerOwinContext(ApplicationDbContext.Create); app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create); app.CreatePerOwinContext<ApplicationSignInManager>