Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
467 views

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?
0
votes
1answer
163 views

ASP.NET MVC Object locking mechanism

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. ...
0
votes
5answers
708 views

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 ...