asp.net mvc - MVC 5 Session expires at every 15 minute -


i using mvc5. @ every 15 minute or before session expired below code have added in web.config file

authentication mode="none" sessionstate mode="inproc" timeout="20" please me. thank you

you can increase session timeout adding below lines in web.config

timeout in minutes

<sessionstate timeout="120"> </sessionstate> 

Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -