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;