I am trying to find out why ASP.NET Development Server is not processing requests at the same time.
So, I 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 twice, the answer takes 20 seconds. This means that the server executes requests one by one (and not simultaneously).
Following the tips in this section , I added EnableSessionState="false" to the page, but that doesn't seem to help.
Any ideas on how to make requests at the same time?
source share