与保存/更新操作相关的状态消息

时间:2011-01-27 17:01:51

标签: asp.net .net workflow-foundation status

我在.NET环境中,当用户执行保存或更新操作时,Foundation会弹出状态消息“处理...”或“保存...”或“刷新...”,然后“保存”。在给定的时间之后,消息将消失,有时在给定的动作真正完成之前。如何访问此功能并延长这些状态消息在屏幕上显示的时间?

1 个答案:

答案 0 :(得分:0)

我认为你需要实现ajax更新面板,并添加UpdateProgress控件并将AssociatedUpdatePanelID与Update Panel id相关联。例如:

<asp:UpdateProgress AssociatedUpdatePanelID="UpdatePanelId">
                <ProgressTemplate>
                    <asp:Label Text="Refreshing"></asp:Label>
                </ProgressTemplate>
               </asp:UpdateProgress>
希望这有帮助。