How should I use the tag in the web.config in my MVC4 application, framework 4.0?
I added it in the web config like this:
<sessionState timeout="15" />
but it didn't time out.
Also I can't understand for certain what it means if I set mode="StateServer" or mode="InProc" In the msdn it say about "InProc" - "Session state is in process with an ASP.NET worker process." But I don't know how to understand it and which one to choose.
Thank you.