我有一个服务器操作,通常需要大约 15 分钟才能完成。我想在操作过程中向用户传达操作的各个阶段。
这是我的表单代码:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" >
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="300" ontick="Timer1_Tick">
</asp:Timer>
<asp:Label ID="lbl_Status" runat="server" Text=""></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<asp:FileUpload ID="upl_UserList" runat="server" />
<p>
<asp:Button ID="btn_Update" runat="server" Text="Update Users"
onclick="btn_Update_Click" />
</p>
</form>
...和我的滴答事件处理程序:
protected void Timer1_Tick(object sender, EventArgs e)
{
lbl_Status.Text = labelText;
lbl_Status.ForeColor = labelColor;
}
在用户单击更新按钮期间,浏览器卡在等待服务器响应。这会导致标签不更新。
我应该如何解决这个问题,我应该使用 iframe 吗?