asp.net 分页问题
想请问高手们 PagedDataSource.CurrentPageIndex 这个属性指的是什么比如 我当前是第5页 按照正常是不是 0 1 2 3 4 那这个属性是不是指的“4” 问题补充:代码一部分如下
1 PagedDataSource pds = new PagedDataSource();
2 pds.CurrentPageIndex = Convert.ToInt32(this.labPage.Text) - 1;
3 labPage.Text = (pds.CurrentPageIndex + 1).ToString();
如果像我说的那样 那么第2句该怎么理解呢?第3句又怎么理解呢?