ASP.NET中大量数据的分页、排序与过滤_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > ASP.NET中大量数据的分页、排序与过滤

ASP.NET中大量数据的分页、排序与过滤

 2013/8/27 21:01:01  蒋叶湖  博客园  我要评论(0)
  • 摘要:1、背景在ASP.NET中通常是用GridView显示数据,然而如果要显示大量数据,一次性的取得所有的数据d的方法指定是不行的。2、解决方法在分页的时候请求当页的数据,排序的时候请求排序后的当页数据,过滤的时候显示过滤后的数据。因此服务端要提供排序、分页以及过滤的参数,在每一次请求的时候传递相应条件返回相应的数据。publicList<DeviceState>GetDeviceStateList(stringsortExpression,intindex,intsize
  • 标签:.net ASP.NET net 数据

1、背景
 

在ASP.NET中通常是用GridView显示数据,然而如果要显示大量数据,一次性的取得所有的数据d的方法指定是不行的。

2、解决方法
 

在分页的时候请求当页的数据,排序的时候请求排序后的当页数据,过滤的时候显示过滤后的数据。

因此服务端要提供排序、分页以及过滤的参数,在每一次请求的时候传递相应条件返回相应的数据。

 

    class="dp-c">
  1. public List<DeviceState> GetDeviceStateList(string sortExpression, int index, int size, bool isPrinterOutOfPaper,  
  2.     bool isNetworkError, bool isHardwareError, string startDeviceID, string endDeviceID, string deviceType,  
  3.     string version, string startRefreshInterval, string endRefreshInterval, DateTime startPowerOn, DateTime endPowerOn, DateTime startPowerOff,  
  4.     DateTime endPowerOff, string startVolume, string endVolume)  
  5. {  
  6.     return ChannelManager.Instance.DeviceService.GetDeviceStateList(  
  7.         new GetDeviceStateListRequest()  
  8.     {  
  9.         SortExpression = sortExpression,  
  10.         Index = index,  
  11.         Count = size,  
  12.         Filter = new FilterDescription()   
  13.         {   
  14.             IsPrinterOutOfPaper = isPrinterOutOfPaper,   
  15.             IsHardwareError = isHardwareError,   
  16.             IsNetworkError = isNetworkError,   
  17.             StartDeviceID = startDeviceID,  
  18.             EndDeviceID = endDeviceID,  
  19.             DeviceType = deviceType,  
  20.             Version = version,   
  21.             StartRefreshInterval = Convert.ToInt32(startRefreshInterval),  
  22.             EndRefreshInterval = Convert.ToInt32(endRefreshInterval),  
  23.             StartPowerOn = startPowerOn,  
  24.             EndPowerOn = endPowerOn,  
  25.             StartPowerOff = startPowerOff,  
  26.             EndPowerOff = endPowerOff,  
  27.             StartVolume = Convert.ToDouble(startVolume),   
  28.             EndVolume = Convert.ToDouble(endVolume)  
  29.         }  
  30.     });   
  31. }  


为了方便使用,我们可以使用ObjectDataSource配合GridView调用该函数,ObjectDataSource内置了对分页、排序的参数传递,但是对于排序需要写格外的SelectParameter传递数据,例如:

 

  1. <asp:ObjectDataSource ID="DeviceStateDataSource" runat="server" EnablePaging="True"  
  2.     MaximumRowsParameterName="size" SelectCountMethod="GetDeviceCount" SelectMethod="GetDeviceStateList"  
  3.     StartRowIndexParameterName="index" TypeName="ICardPay.Web.DeviceManagerClient"  
  4.     SortParameterName="sortExpression">  
  5.     <SelectParameters>  
  6.         <asp:ControlParameter Name="isPrinterOutOfPaper" ControlID="IsOutOfPaperCheckBox"  
  7.             PropertyName="Checked" />  
  8.         <asp:ControlParameter Name="isNetworkError" ControlID="IsNetworkErrorCheckBox" PropertyName="Checked" />  
  9.         <asp:ControlParameter Name="isHardwareError" ControlID="IsHardwareErrorCheckBox"  
  10.             PropertyName="Checked" />  
  11.         <asp:ControlParameter Name="startDeviceID" ControlID="DeviceIDFromTextBox" PropertyName="Text" />  
  12.         <asp:ControlParameter Name="endDeviceID" ControlID="DeviceIDToTextBox" PropertyName="Text" />  
  13.         <asp:ControlParameter Name="deviceType" ControlID="DeviceTypeTextBox" PropertyName="Text" />  
  14.         <asp:ControlParameter Name="version" ControlID="VersionTextBox" PropertyName="Text" />  
  15.         <asp:ControlParameter Name="startRefreshInterval" ControlID="RefreshIntervalFromTextBox"  
  16.             PropertyName="Text" />  
  17.         <asp:ControlParameter Name="endRefreshInterval" ControlID="RefreshIntervalToTextBox"  
  18.             PropertyName="Text" />  
  19.         <asp:ControlParameter Name="startPowerOn" ControlID="TimeSelector1" PropertyName="Date" />  
  20.         <asp:ControlParameter Name="endPowerOn" ControlID="TimeSelector2" PropertyName="Date" />  
  21.         <asp:ControlParameter Name="startPowerOff" ControlID="TimeSelector3" PropertyName="Date" />  
  22.         <asp:ControlParameter Name="endPowerOff" ControlID="TimeSelector4" PropertyName="Date" />  
  23.         <asp:ControlParameter Name="startVolume" ControlID="VolumeTextBox1" PropertyName="Text" />  
  24.         <asp:ControlParameter Name="endVolume" ControlID="VolumeTextBox2" PropertyName="Text" />  
  25.     </SelectParameters>  
  26. </asp:ObjectDataSource>  

 

最后GridView的写法如下:

 

  1. <asp:UpdatePanel runat="server">  
  2.     <ContentTemplate>  
  3.         <asp:GridView ID="DeviceStateGridView" runat="server" AllowPaging="True" PageSize="15"  
  4.             AllowSorting="true" Width="100%" OnRowCreated="DeviceStateGridViewRowCreated"  
  5.             AutoGenerateColumns="False" DataSourceID="DeviceStateDataSource" OnDataBound="DeviceStateGridDataBound">  
  6.             <Columns>  
  7.                 <asp:TemplateField>  
  8.                     <HeaderTemplate>  
  9.                         <asp:CheckBox ID="SelectAllCheckBox" runat="server" AutoPostBack="true" OnCheckedChanged="SelectAllCheckBoxCheckedChanged" />  
  10.                     </HeaderTemplate>  
  11.                     <ItemTemplate>  
  12.                         <asp:CheckBox ID="SelectCheckBox" runat="server" AutoPostBack="true" OnCheckedChanged="SelectCheckBoxCheckedChanged" />  
  13.                     </ItemTemplate>  
  14.                 </asp:TemplateField>  
  15.                 <asp:BoundField DataField="DeviceID" HeaderText="编号" SortExpression="DeviceID" />                             </Columns>  
  16.             <EmptyDataTemplate>  
  17.                 <p>  
  18.                     满足条件的数据不存在!</p>  
  19.             </EmptyDataTemplate>  
  20.         </asp:GridView>  
  21.     </ContentTemplate>  
  22. </asp:UpdatePanel>  
发表评论
用户名: 匿名