I'm trying to find out why ASP.NET Development Server is not processing the requests concurrently.
So I've created a simple aspx page with the following code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
System.Threading.Thread.Sleep(10000)
End Sub
If I open the page two times, the response takes 20 seconds. That means, the server executes requests one by one (not concurrently).
Following advice provided in this topic, I've added EnableSessionState="false"
to the page, but that doesn't seem to help.
Any ideas how to make the requests process concurrently?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…