ASP.net session request queuing

This behaviour is by design; no concurrent access to the session state is allowed. Requests with same SessionID will be locked exclusively to prevent potential corruption of its state. To get around this you can disable session state in your page directive. <%@ Page EnableSessionState=”false” %> Read “Concurrent Requests and Session State” here http://msdn.microsoft.com/en-us/library/ms178581.aspx for … Read more