如何从代码隐藏引用ListView DataPager
对于 ListView 控件 DataPager,我尝试以编程方式设置 PageSize,但是从后面的代码来看,我看不到数据分页器。
尝试这样做:
DataPager1.PageSize = 10
但是无法从页面隐藏代码访问“DataPager1”。
谢谢, 亚当
For a ListView control DataPager, I'm trying to programmatically set the PageSize, but from the code-behind, I'm not able to see the datapager.
Trying to do this:
DataPager1.PageSize = 10
But "DataPager1" isn't accessible from the code behind page.
Thanks,
Adam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 DataPager 位于 ListViews LayoutTemplate 内部,则无法从代码隐藏直接访问它。
要访问 DataPager,您必须使用 ListViews FindControl 方法。
请记住在使用前检查是否找到分页器对象(不同于 null)。
If your DataPager is inside the ListViews LayoutTemplate it is not directly accessible from codebehind.
To get access to the DataPager, you must use the ListViews FindControl method.
Remember to check if the pager object is found (different from null) before using it.