GridView 分页 显示加载进度

简介:

 

js:

 
    
<script type="text/javascript">
        
function onUpdating() {
            
var updateProgressDiv = document.getElementById('upCustomer');
            
var gridView = document.getElementById('gvUpdateProgress');

            
var gridViewBounds = Sys.UI.DomElement.getBounds(gridView);
            
var updateProgressDivBounds = Sys.UI.DomElement.getBounds(updateProgressDiv);

            
var x = gridViewBounds.x + Math.round(gridViewBounds.width / 2- Math.round(updateProgressDivBounds.width / 2);
            
var y = gridViewBounds.y + Math.round(gridViewBounds.height / 2- Math.round(updateProgressDivBounds.height / 2);

            Sys.UI.DomElement.setLocation(updateProgressDiv, x, y);

        }     
    
</script>

<div>
        
<asp:ScriptManager ID="ScriptManager1" runat="server">
        
</asp:ScriptManager>
        
<table border="0" cellpadding="0" cellspacing="0" width="100%">
            
<tbody>
            
<tr>
             
<td style=" width: 100%; ">
             
<asp:UpdateProgress ID="upCustomer" AssociatedUpdatePanelID="upnlCustomer" runat="server">
              
<ProgressTemplate>
               
<div id="imgdivLoading" align="center" valign="middle" runat="server"  >
               
<asp:Image ID="imgLoading" runat="server" ImageUrl="Images/loading.gif"  />
              
</div>
               
</ProgressTemplate>
              
</asp:UpdateProgress>
             
</td>
           
</tr>
               

            
<tr>
            
<td style="width: 100%">
             
<asp:UpdatePanel ID="upnlCustomer" runat="server">
             
<ContentTemplate>
               
<asp:GridView ID="gvUpdateProgress"  .... </asp:GridView>
              
</ContentTemplate>
             
</asp:UpdatePanel>
            
</td>
            
</tr>
            
</tbody>
        
</table>
    
</div>

 

 

 

protected void Page_Load(object sender, EventArgs e)
    {
        gvUpdateProgress.Attributes.Add("onclick", " onUpdating();");
        bindGrid();
    }

 

 

 private void bindGrid()
    {
        SqlConnection conn = new SqlConnection("");
        conn.ConnectionString = "Trusted_Connection=yes;Addr=Localhost;Initial Catalog=Northwind";
        SqlCommand cmdCustomer = new SqlCommand("select CustomerID,CompanyName,ContactName,City,PostalCode,Country,Phone from Customers", conn);
        SqlDataAdapter adptCustomer = new SqlDataAdapter(cmdCustomer);
        DataSet dsCustomer = new DataSet();
        adptCustomer.Fill(dsCustomer,"Customer");
        gvUpdateProgress.DataSource = dsCustomer.Tables["Customer"].DefaultView;
        gvUpdateProgress.DataBind();

    }

 

protected void gvUpdateProgress_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        System.Threading.Thread.Sleep(3000); // waiting period
        gvUpdateProgress.PageIndex = e.NewPageIndex;
        gvUpdateProgress.DataBind();
    }



    本文转自曾祥展博客园博客,原文链接:http://www.cnblogs.com/zengxiangzhan/archive/2010/02/19/1669420.html,如需转载请自行联系原作者

相关文章
|
算法
分页控件和几个相关控件的源代码
分页控件的源代码,可能会让有些人失望,因为代码很乱。乱的一个原因呢,可能是没有采用OO的思路吧,因为写控件的时候还一点都不会OO呢,只是一直在用,也就没有作大的重构。有两个分页控件, 一个是通过PostBack来分页的,一个是通过URL来分页的。
765 0
|
数据库
分页控件的使用能不能再简单一点呢,能不能一个页面搞定所有的列表需求?
目的: 1、一个页面(DataList.aspx)可以显示多个模块的列表功能。      一般是有一个列表需求就需要一个aspx文件,如果有100个列表,那么就会有100个aspx文件,这么多的文件(包括.aspx.cs文件)里面的内容基本是一样的,这样写起来麻烦,管理起来也不容易,命名就是一个比较头痛的问题。
1041 0