因为在自定义分页中有下面的代码
    //上一页
    protected void lnkbtnPrevPage_Click(object sender, EventArgs e)
    {
        this.GridView1.PageIndex = Convert.ToInt32(this.GridView1.PageIndex - 1);
    }
在用户控件中没有这个GridView1,请各位指教