我可以显示模态弹出窗口而不是显示进度指示器吗?我想让用户等待 - 在任务完成之前,他们不应该做任何事情。我找到了可能使用更新面板的解决方案,但没有使用进度条。
答案 0 :(得分:1)
您可能真的想要同时执行这两项操作:显示模式进度指示器,不允许用户发送新的回发事件。
Here's一个博客,展示了如何将模态和进度条控件合并为一个。
答案 1 :(得分:0)
<asp:UpdateProgress id="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<progresstemplate>
<div style="width:600px;height:600px;background-color:Gray;filter:alpha(opacity=70);opacity:0.7" >
<IMG id="img2" alt="" src="ajax-loader.gif" />
</div>
</progresstemplate>
或尝试this链接