asp:DataPager onclick 事件
我正在使用 .Net 列表视图和数据分页器来启用列表视图的分页。
我能够将分页设置为列表视图的完美工作,但我希望当用户单击数据分页器中的任何页码时调用一个方法。
我想每当调用页码时执行一些操作。我想没有 onclick 事件,那么有没有其他方法可以实现这一点。
谢谢
I am working with the .Net List view along with a data pager to enable pagination for a list view.
I am able to set the pagination working perfectly for the list view but I wish to have a method being called when ever the user clicks on any of the page numbers in the data pager.
I want to perform some operation whenever the page number is called. I guess there is no onclick event, so is there any other way by which this is possible.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其设置为图像按钮或链接按钮。
我有一段代码..你只需要实现它。
您可以设置链接和点击事件。
you can set it as imagebutton or linkbutton.
I have piece of code.. you just need to implement it.
you can set link and click event.
您可以将处理程序绑定到
OnPagePropertiesChanging
列表视图的事件。PagePropertiesChangingEventArgs
对象作为参数传递给处理程序,其中包含MaximumRows
和StartRowIndex
属性。您可以使用它们来计算当前页码。它非常简单,并且不需要像 sikender 提出的解决方案那样进行代码隐藏事件绑定。You can bind a handler to the
OnPagePropertiesChanging
Event of the List View. APagePropertiesChangingEventArgs
object is passed to the handler as argument which containsMaximumRows
andStartRowIndex
properties. You can use these to calculate the current page number. It is very easy and requires no code-behind event binding as the solution proposed by sikender.