ASP.NET AJAX using UpdatePanels
问题 Conceptually, my understanding of AJAX is requests sent to the server asynchronously aka in parallel. When I use multiple UpdatePanels on a page and trigger multiple async postbacks (say by using a button), I notice that the second request is not started till the first one is complete. However when I use JQuery ajax and use PageMethods / WebMethods , my requests are processed in parallel. Why is there a discrepency in the way ASP.NET AJAX behaves? Also, when I click the button in the