I have tried to Google my problem, but I have found nothing about my problem.
I would like to rename dynamically my reports from Reporting Services when I export them using the ReportViewer. Basically, the format will be reportName + timestamp.
Is there anyway to do that using C# or Reporting Services itself?
Here’s how I include the reportviewer on my pages:
<rsweb:ReportViewer ID="rv" runat="server" ShowToolBar="true" ShowParameterPrompts="false"
BackColor="#F0F8FF" Height="1200px" Width="100%" ProcessingMode="Remote" EnableViewState="true"
Visible="false" SizeToReportContent="True">
<LocalReport EnableExternalImages="True">
</LocalReport>
</rsweb:ReportViewer>
I solved the problem using a simple method and I hope to be able to help someone with the code below:
Credits to http://beta.codeproject.com/Questions/277989/How-to-export-rdlc-report-to-PDF-without-using-Rep