Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ListView コントロールの DataPager の場合、プログラムでPageSizeを設定しようとしていますが、コード ビハインドからは datapager を確認できません。
これをしようとしています:
DataPager1.PageSize = 10
しかし、"DataPager1" はコード ビハインド ページからアクセスできません。
ありがとう、アダム
DataPager が ListViews LayoutTemplate 内にある場合、分離コードから直接アクセスすることはできません。
DataPager にアクセスするには、ListViews FindControl メソッドを使用する必要があります。
DataPager pager = YourListViewID.FindControl("DataPager1") as DataPager;
使用する前に、ページャー オブジェクトが見つかったかどうか (null とは異なる) を必ず確認してください。