Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get page numbers to appear on rldc microsoft reports (local mode) when exported to pdf?

I need the page numbers to appear on the pdf export of the report. I'm using reportviewer 9. Anyone know how to do this?

Thanks,

Isaac

like image 826
Isaac Bolinger Avatar asked Dec 15 '10 09:12

Isaac Bolinger


People also ask

How to add page no in rdlc report?

In Visual Studio, in the Report. rdlc file, right-click the text box in the header that displays the page number, and then select Expression.

What is reporting in asp net?

It is used to create reports using Microsoft Reporting Technology. It is not a third party report and is a built-in reporting service in Microsoft Visual Studio. Benefits. Runs on client side. Run Based on only one Dataset.


1 Answers

What you have to do is make a page header, using Report->Page header

Make a text box in it and put this in there =Globals.PageNumber & " of " & Globals.TotalPages

like image 72
Isaac Bolinger Avatar answered Sep 29 '22 11:09

Isaac Bolinger