我的 aspx 页面中有一个提交按钮。按钮的“单击”事件执行“.txt”文件的解析,并将结果存储在表格中并将页面重定向到另一个页面。现在的问题是解析大约需要 1.5 分钟。我需要实现一个进度条和一个计时器,它会显示完成操作还剩下多少时间。这包括计算完成数据库操作所需的时间并将此值分配给计时器。谁能帮我实现这个?
问问题
101 次
1 回答
0
你可以试试这段代码(Ajax:UpdatePanel + UpdateProgress)
<form id="form1" runat="server">
<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>
</form>
protected void UpdateButton_Click(object sender, EventArgs e)
{
System.Threading.Thread.Sleep(5000); //Your treatment
}
于 2012-06-25T16:58:31.127 回答