Good morning,
I have successfully been able to add a built report to a Windows Form, but I am having a little trouble getting it to work on a webpage.
I have added the Telerik Report to the webpage, added the Report Source, but I am getting the error
"The source of the report definition has not been specified."
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
instanceReportSource.ReportDocument = new Telerik.Reporting.Examples.CSharp.ListBoundReport();
this.ReportViewer1.ReportSource = instanceReportSource;
}
}
I forgot that I needed to add the code above. However, once I added that it in, the namespace 'Examples' does not exist in the 'Telerik.Reporting' namespace.
Is there another reference I need to add/change? I am using the Q3 2012 Reporting version.
Thanks!