Hi,
I am setting timeout for form authentication like below after checking with database on login.
FormsAuthenticationTicket authenticationticket = new FormsAuthenticationTicket(1, model.UId, DateTime.Now, DateTime.Now.AddMinutes(2),false, userrecords);
But timeout doesn't work.
Do we need more setting in MVC5?