sessionstate-timeout

ASP.NET Session expires in no time?

Weired problem! ASP.NET Session expires instantly. In my web.config I have this session settings: <sessionState mode="InProc" timeout="10000" /> AFAIK the timeout attribute's value is in minutes and can't be greater than 525,600 minutes (1 year). I don't understand what I am doing wrong here. Why is the session expiring. Is it a serv...

What is the use of stateConnectionString in sessionState in Web.config?

I'm using VS 2005 for web forms. Looking at the web.config I see a stateConnectionString attribute. Is this really needed? When is this needed? How is this used? ...

ASP.NET MVC Object locking mechanism

Hi, I'm working on a ASP.NET MVC 2 web application that lets users edit parameters on a simulation and launch it. Once a user starts editing a specific simulation, it must be inaccessible to other users. Is there an easy way to achieve that goal in ASP.NET MVC? My first idea was to put the logged on user's identity in the Application ...