我在.NET环境中,当用户执行保存或更新操作时,Foundation会弹出状态消息“处理...”或“保存...”或“刷新...”,然后“保存”。在给定的时间之后,消息将消失,有时在给定的动作真正完成之前。如何访问此功能并延长这些状态消息在屏幕上显示的时间?
答案 0 :(得分:0)
我认为你需要实现ajax更新面板,并添加UpdateProgress控件并将AssociatedUpdatePanelID与Update Panel id相关联。例如:
<asp:UpdateProgress AssociatedUpdatePanelID="UpdatePanelId">
<ProgressTemplate>
<asp:Label Text="Refreshing"></asp:Label>
</ProgressTemplate>
</asp:UpdateProgress>
希望这有帮助。