网格视图控件中的自定义分页
我想在我的 gridview 控件中自定义分页。第一个选项是从数据库中仅获取所需的行。但我想要的是从数据库中获取所有行并将它们存储到数据表中。现在是否有任何选项可以根据页面大小和页面索引将数据表的某些行绑定到 gridview ,这样我就不需要每次在页面更改事件时连接到数据库?
I want custom pagination in my gridview control. The first option is to fetch only required row from the data base. But what I want is I am fetching all rows from the database and storing them into datatable. Now is there any option that I can bind only some of the rows of datatable to gridview based on page size and page index so that I no need to connect to database every time on page change event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须处理 Gridview
PageIndexChanging
事件并设置新页面索引。喜欢...
You have to handle the Gridview
PageIndexChanging
event and setup a New page index.like...