Is there a way to set the session timeout for each user? It looks like we will have to override the web.config parameter with a custom provider.
web.config
Any thoughts on how to do this and potential flaws?
Did you try to simply edit the current user session timeout in Session_Start by setting it?
Session_Start
HttpContext.Current.Session.Timeout = yourNewTimeout;
Source: https://habr.com/ru/post/900306/More articles:improving matlab code performance with anonymous function bottlenecks - performanceWhat are the advantages of MongoDB over MySQL and PostgreSQL? - pythonIs it possible to catch an exception that you cannot handle (in C #)? - genericssetInterval returns a Timer object, not intervalId - javascriptHow should βsharedβ be visible? - asp.net-mvc-3Using C # generics in a nested class - genericsAccess to string template variables from php - phpThe build step initiated by TeamCity always builds - even if there are no changes - powershellJava / Android - quick analysis of ByteBuffer - javaWhat are the methods for determining probabilities in hidden Markov models? - mathAll Articles