如何显示内容页面中的加载图像

如何显示内容页面中的加载图像

本文介绍了如何显示内容页面中的加载图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在内容页面中显示加载图像.我使用了母版页,在该页面中我必须编写加载过程代码.在内容页面中,只要我单击页面中存在的按钮,加载图像就会显示几秒钟,然后页面就会出现

how to show loading image in content page., i used master page, where i have to write loading process code.,. in content page when ever i click button exist in the page the loading image should show a sec''s then page should come

推荐答案



<asp:updateprogress runat="server" id="upMainProgress" xmlns:asp="#unknown">
        <progresstemplate>
            <div style="margin: 0 auto; width: 100%;">
                <div id="load">
                </div>
                <div id="visibleDivProgress">
                    <img src="images/loading.gif" alt="Please Wait..." />
                </div>
            </div>
        </progresstemplate>
    </asp:updateprogress>


这篇关于如何显示内容页面中的加载图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 17:00