页面加载时,显示那个转转的图片
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
//转图片的地方
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
<img src="images/icon_wait.gif" width="32" height="32" alt=""><span class="style1"><font color=red>数据正在查询,请耐心等待。。。</font></span>
</ProgressTemplate>
</asp:UpdateProgress>
//转图片的地方
</ContentTemplate>
</asp:UpdatePanel>