ASP.NET WebForm – requests from same IP same browser are queued in IIS when first request is not finished yet
We have an asp.net webform appliation. In A.aspx page, we have code as below. protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) { Thread.Sleep(1000*30); } } B.aspx is just a normal page without anything spceial. It is a very…