I am using the hierarchical viewer to display a list of notes from the content tree. I need to do pagination and show the number of records on the page ie
Displaying 21 - 30 of 100
I have used a repeater before and displayed this using
PagingText.Text = string.Format(
"<p class=\"itemcount\"> Displaying {0} - {1} of {2}</p>",
repItems.PagerControl.RecordStart,
repItems.PagerControl.RecordEnd,
repItems.PagerControl.TotalRecords);
How can I do this using the univiewer and its unipager control?