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.
System.Web.UI.WebControls.GridView を継承するクラスを作成しました。これを GridViewX と呼びます。
とにかく、次のメソッドを記述できるようにしたいと考えています。 1. ページ切り替え時にカスタムのブール値プロパティ isLastPage を設定します。同時に、2. 最後のページのレコード (行) の数を格納するカスタム int プロパティ unmodifiedRowCount を設定します。
ありがとうございました!
最後のページのレコードは次のように計算できます
int lastPageRecords = TotalRecords % PageSize;