我在 asp.net 页面中有 2 个更新面板,在更新面板中有一个文本框和 asp 按钮可用,用户输入文本框并依次单击按钮,第一个请求发送到一个类方法(需要 5 秒时间),第二个请求发送另一个类方法(需要 10 秒时间)但是现在用户单击第一个按钮而不等待响应立即单击第二个按钮,我已经发送了两个请求并独立显示响应(这意味着异步)请给我任何建议
问问题
308 次
1 回答
1
使用 UpdateProgress 控件:
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdateProgress runat="server" id="PageUpdateProgress">
<ProgressTemplate>
Loading...
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel runat="server" id="Panel">
<ContentTemplate>
<asp:Button runat="server" id="UpdateButton" onclick="UpdateButton_Click" text="Update" />
</ContentTemplate>
</asp:UpdatePanel>
于 2012-06-01T07:49:03.997 回答