gridview分页的PagedDatasource
我正在使用 PagedDataSource 进行 gridview 的自定义分页。代码如下:
PagedDataSource dataSource = new PagedDataSource();
int virtualRowCount = Convert.ToInt32(dataset.Tables[1].Rows[0]["TotalRows"]);
dataSource.AllowCustomPaging = true;
dataSource.PageSize = 15;
dataSource.VirtualCount = virtualRowCount;
dataSource.DataSource = dataset.Tables[0].DefaultView;
gvTaxPayerLoginDetail.DataSource = dataSource;
gvTaxPayerLoginDetail.DataBind();
我从存储过程(在 virtualRowCount 中设置)返回“totalrows”以及数据集的 tables[0]
中的实际行。我正在得到结果,但我的寻呼机不见了。寻呼机不再显示。我如何告诉 gridview 从 PagedDataSource 获取值?
使用 ASP.Net 4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ASP.NET 2.0+版本
这篇文章在这里http://www.codewrecks.com/blog/index.php/2008/02/09/aspnet-20-gridview-custom-sorting-with-pageddatasource/ 扩展了标准 GridView并提供管道代码来实现 PagedDataSource 集成。
ASP.NET 4.5版本
在GridView上设置AllowPaging和AllowCustomPaging属性以及Paged数据源属性?
另外这篇文章也可能有帮助 http://www.byteblocks.com/post/2012/03/20/Use-Custom-Paging-in-Grid-View.aspx
ASP.NET 2.0+ Version
This post here http://www.codewrecks.com/blog/index.php/2008/02/09/aspnet-20-gridview-custom-sorting-with-pageddatasource/ extends the standard GridView and provides plumbing code to achieve PagedDataSource integration.
ASP.NET 4.5 Version
Set the AllowPaging and AllowCustomPaging attribute on the GridView as well as the Paged data source property?
Additionally this post may also be of help http://www.byteblocks.com/post/2012/03/20/Use-Custom-Paging-in-Grid-View.aspx