列表视图的数据分页器始终转到结果的第 1 页
我正在使用 Listview 和 Datapager 控件。但是当我刷新页面时,它总是将数据分页器设置为第 1 页。我希望刷新后它应该位于同一页面中。例如,我想要与 stackoverflow 具有相同的功能,例如: https://stackoverflow.com/questions/tagged/datapager 。如何做到这一点任何人都可以提供帮助。
I am using a Listview and Datapager control. But when I refresh the page it always set the datapager to page 1. I want that it should be in the same page after refreshing. For example I want the same functionality as stackoverflow is having like: https://stackoverflow.com/questions/tagged/datapager. How to do this can any one help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 DataPager 中为
QueryStringField
参数指定一个值:这会将该 DataPager 的所有分页控件转换为超链接,并且页码将在 URL 查询字符串中传递(在上面的示例中, URL 将类似于“http://www.example.com/search.aspx?query=xyz&page=2”)。
请参阅 有关更多信息,请参阅 MSDN 文章。
Try specifying a value for the
QueryStringField
parameter in your DataPager:This will convert all paging controls for that DataPager into hyperlinks, and the page number will be passed in the URL query string (in the example above, the URL will look like e.g., "http://www.example.com/search.aspx?query=xyz&page=2").
See this MSDN article for more information.