如何获得Gridview分页里面的内容,对分页里的内容进行判断,难道我要对数据源操作?
1.分页方法,自动分页:  
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        GridView _gridView = (GridView)sender;        // Set the PageIndex to the NewPageIndex
        _gridView.PageIndex = e.NewPageIndex;        // Repopulate the GridView
        _gridView.DataSource = _GetResport;
        _gridView.DataBind();
    }
2._GetResport这是数据源
3.没分页之前我通过外面的按钮可以直接获取Gridview里面的值,比如:
((Label)this.GridView_DFMExtIssue.Rows[i].FindControl("ValorID")).Text
然后我就可以对数据 进行判断,不符合的我把单元格背景色变了this.GridView1.Rows[i].Cells[23].BackColor = System.Drawing.Color.Yellow;
这种方法只能对当前页有效,对分页后对后面的几页就判断不了,
我该如何做?高手指点谢谢