yes
check the following link http://www.codeproject.com/Questions/588555/Howplustoplusrestrictplusrowsplusperpluspageplusin
First we can define the property of Allow Paging="true" for your reference,check the following example, protected void GridView3_PageIndexChanging(object sender, GridViewPageEventArgs e) { /*Fill Gridview*/ GridView3.PageIndex = e.NewPageIndex; GridView3.DataBind(); }
there is a property of grid view " PAGING" made it as true
User default paging property of Grid view ,for that just enabled allow paging is true.
Select the Paging Option available in the Smart Tag
can you share your code segment?
Dear All,