<asp:label id="lblTracker" runat="server" />
<asp:DataGrid runat="server" ID="ResGrid" AllowPaging="true" cellpadding=5 gridlines="Vertical" onPageIndexChanged="setPage" PageSize="15"> <itemstyle HorizontalAlign="Left" VerticalAlign="Top"/> <pagerstyle position="Bottom" Mode="NumericPages" horizontalalign="right" />
</asp:DataGrid>
aspx.cs file
List<string> Results_final = new List<string>();
protected void bindGrid() { ResGrid.DataSource = Results_final; ResGrid.DataBind(); lblTracker.Text = "Page " + (ResGrid.CurrentPageIndex + 1) + " of " + ResGrid.PageCount; }