我的aspx页面中有一个提交按钮。按钮的“Click”事件执行“.txt”文件的解析,并将结果存储在表中并将页面重定向到另一个页面。 现在的问题是解析需要大约1.5分钟。我需要实现一个进度条和一个计时器,它将显示完成剩余的时间 操作。这包括计算完成数据库操作并将此值分配给计时器所需的时间。 任何人都可以帮我实现这个吗?
答案 0 :(得分: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
}