Good Afternoon
I have created a .NET list page, but the list is not showing the page count or the number of pages, e.g., '100 people . Page 1 of 10.
List personList = new List("PersonGrid");
personList.Title = "People";
personList.Filter = "pers_companyid=" + companyId;
personList.ShowNavigationButtons = true;
personList.RowsPerScreen = 2;
AddContent(personList.ToHtml());
Thanks
Rajan