I have a smart search results web part on my search page, and I need to display the results count at the top of the results.
Example: Results 1-10 of 38
This has been resolved: the macro that did it is as follows.
Results <%# Eval("FirstOnPage")%> - <%# Eval("LastOnPage") %> of <%# Eval("Items")%>
The out of box web part doesn't show that format but the paging, so maybe you have a custom search results web part. You can go to the ascx user control and change the position of the UniPager to before the results.
Please, sign in to be able to submit a new answer.