本文介绍了加载请等待....图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想显示/隐藏加载请等待...图片。怎么做?
I want to show/hide loading please wait... image. How to do it?
推荐答案
<asp:UpdateProgress id="PageUpdateProgress"
runat="server"
DisplayAfter="0"
DynamicLayout="true">
<ProgressTemplate>
<div class="loadingdiv" style="z-index: 100002 !important;">
<div class="loadingcontentdiv">
<h3>Loading...</h3>
<img src="../Images/blueloading.gif" style="margin:0 auto;" alt="blueloading.gif"/><br />
<p style="font-size:12px;">
Communicating with server
<img src="../Images/ellipsis.gif" alt="ellipsis.gif" style="vertical-align: bottom;padding-bottom: 4px;"/>
</p>
</div>
</div>
</ProgressTemplate>
</asp:UpdateProgress>
这篇关于加载请等待....图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!