Hello,
You can use the paging feature that is build in datagrid.
To enable paging, set the AllowPaging property of the datagrid to true.
Select your page size as per required and in the pageindexchanging event of the gridview, write down the following code
GridView1.PageIndex = e.NewPageIndex;
GridView1.DataBind();
This will do it, hopefully