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.
嗨,我有一个 gridview 包含数百条记录,它正在进行分页,每个页面的大小为 10。现在我想在每个分页事件中找到 gridview 的第一行和最后一行索引号?有什么建议么?
页码乘以页面大小不会给您页面上的最后一个索引吗?MyGrid.PageIndex + 1 * MyGrid.PageSize 对于页面上的第一个,您可以从您计算的最后一个索引中减去页面大小
MyGrid.PageIndex + 1 * MyGrid.PageSize