我在asp.net页面中使用UpdatePaenl。它有一个触发它的按钮。 按下按钮时,我可以显示“正在加载”。 在我的问题中,我需要它在首次调用页面时显示“正在加载”,而不仅仅是在按下按钮时。
非常感谢任何想法。 感谢
答案 0 :(得分:1)
以下是我为照片库小部件创建的一些示例代码:
<div>
<asp:UpdateProgress ID="UpdateProgress1" AssociatedUpdatePanelID="updatePanel1" runat="server">
<ProgressTemplate>
<img src="images/busybar.gif" alt="Loading..." style="margin-right:auto; margin-left:auto; position:fixed; top:60%; left:50%;" />
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel ID="updatePanel1" runat="server">
<ContentTemplate>
<uc1:PhotoAlbumThumbnails ID="PhotoAlbumThumbnails1" runat="server" ItemsPerPage="30" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
答案 1 :(得分:0)
你检查过UpdateProgress控件吗? http://www.asp.net/Ajax/Documentation/Live/overview/UpdateProgressOverview.aspx