0
in
"PageIndexChanging" you have to rebind the datagrid as
protected void grdView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
FillGrid();
grdView.PageIndex = e.NewPageIndex;
grdView.DataBind();
}
Try this
Check this is correct answer if it helped.