I am creating a set of reports, each with 1-2 charts. How do I set the title at run time using the reportviewer?
Sample of my aspx code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Dim report As New MyReports.RevByOffice
ReportViewer1.Report = report
End If
End Sub
I am using Reporting Q3 2011. Once I have all the reports designed, then I will put all the reports into a ReportBook.
Sample of my aspx code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Dim report As New MyReports.RevByOffice
ReportViewer1.Report = report
End If
End Sub
I am using Reporting Q3 2011. Once I have all the reports designed, then I will put all the reports into a ReportBook.