Issues with storing the custom Principal in Session for ASP.NET MVC
I am running into an issue with ASP.NET MVC where it is forcing the user to log back in after about 20 mins of inactivity. I am using Forms Authentication and have increased the time-out in the config file as: <authentication mode="Forms"> <forms loginUrl="~/Account/LogOn" timeout="9999999" /> </authentication> I am also setting the session time-out in the config file as: <sessionState timeout="120"></sessionState> I am basing this off of Rockford Lhotka's CSLA ASP.NET MVC example and have the following in my global.asax: protected void Application_AcquireRequestState(object sender, EventArgs