解决Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount..错误

在用asp:DataGrid显示数据的时候,删除最后一页页面最后一条的时候,会出现:
Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount..错误.

意思是说,当前页面的页码必须大于0以及小于总页数...
解决方法如下:


DataView dataView = getData("*");
                if(dataView.Count/dg.PageSize == dg.CurrentPageIndex)
                {
                    if(dg.CurrentPageIndex > 0)
                    {
                        dg.CurrentPageIndex -= 1;
                    }
                }


也就是当总记录数处以每页条数如果等于当前页码,就意味着这页没有记录,页码需要向前一页,不过有例外的是, 第一页要排除.

你可能感兴趣的:(asp)