i tried to use multiple updated panel control on a single page by setting there update mode to 'conditional'
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Button runat="server" ID="Panel1Button" Text="Panel 1 button" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Button runat="server" ID="Panel2Button" Text="panel 2 button" />
</ContentTemplate>
</asp:UpdatePanel>
when i click panel 1 button and then panel 2 button while panel 1 button aciton is not completed it will abort panel 1 button action and perform the last button click event
how can i correct that?