I have one stored procedure in which there are two parameters : PageNumber and PageSize and I bind this stored procedure to ssrs report.
So when i pass parameter value: Page Number: 1 & Page Size=10, then stored procedure returns 10 records.
And In SSRS Report, there will be one page.
But I want to pass total number of records from Stored procedure to ssrs report so that when I run the report, it could display 10 records firstly and when i click on next, then it would show next ten records.