seeSummary Rows in DataGrid Controls
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndive/html/data01102002.asp

解决方案 »

  1.   

    已实现,谢谢! saucer(思归)可不可以再请教:对于非常大的数据模型而言,分页检索时,每次都加载整个数据源非常浪费,所以有什么方法可以改善.知道用AllowCustomPaging 为 true
    若数据表中有唯一的自增索引,但是这个字段断号,或者需要按照其他条件排序分页,怎么实现?
      

  2.   

    >>>,每次都加载整个数据源非常浪费,use AllowCustomPaging, only select the records for the current pages, don't forget to set VirtualItemCount property>>>但是这个字段断号,或者需要按照其他条件排序分页,怎么实现?remember 条件 in ViewState or Session variable, you might need to construct SQL dynamically or use stored procedure 
      

  3.   

    请教:
    total number of items in the DataGrid control
    total number of items in the data source
    有什么不同?若库中有2000000条数据的话
    大量数据分页有没有相关的例子呀?(字段断号的,需要按照其他条件排序分页)