如何从代码隐藏引用ListView DataPager

发布于 2024-10-20 17:14:45 字数 308 浏览 7 评论 0原文

对于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二智少女 2024-10-27 17:14:45

如果您的 DataPager 位于 ListViews LayoutTemplate 内部,则无法从代码隐藏直接访问它。

要访问 DataPager,您必须使用 ListViews FindControl 方法。

DataPager pager = YourListViewID.FindControl("DataPager1") as DataPager;

请记住在使用前检查是否找到分页器对象(不同于 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.

DataPager pager = YourListViewID.FindControl("DataPager1") as DataPager;

Remember to check if the pager object is found (different from null) before using it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文