ReportExecutionService - Multiple Reports
Currently I am using the ReportExecutionService, and its Render method to automatically export a report to a pdf
on my web page. What I want to do is export multiple reports into a single pdf. The ReportExecutionService Render method returns a byte[] array and I tried to block copy this array but it only displays the last report.
Is there anyway to display multiple reports at once via
ReportExecutionService or any other method on a webpage?
May 3rd, 2011 1:28pm
Hi JLiz2803,
By design, the ReportExecutionService.Render method can only export a report to a PDF. In order to export multiple report to a single PDF, I would suggest export them to multiple
PDFs at first, and then try to merge these PDFs to one programmatically.
For more information about how to Export Merge PDF files, I would suggest you refer to the thread
http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/64243fa4-7f5d-40a5-9d6d-644d94561ca3
Thanks,
Tony Chain
Tony Chain [MSFT CSG] | Microsoft Community Support
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Free Windows Admin Tool Kit Click here and download it now
May 5th, 2011 4:20am
Hi JLiz2803,
By design, the ReportExecutionService.Render method can only export a report to a PDF. In order to export multiple report to a single PDF, I would suggest export them to multiple
PDFs at first, and then try to merge these PDFs to one programmatically.
For more information about how to Export Merge PDF files, I would suggest you refer to the thread
http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/64243fa4-7f5d-40a5-9d6d-644d94561ca3
Thanks,
Tony Chain
Tony Chain [MSFT CSG] | Microsoft Community Support
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
May 5th, 2011 4:20am