I am using MVC 4 ASP.NET framework.I followed that a Application state can be locked like
Application.Lock();
Application["PageRequestCount"] =
((int)Application["PageRequestCount"])+1;
Application.UnLock();
Similarly a session state can be locked? if yes how? if not then why?