protected Telerik.ReportViewer.WebForms.ReportViewer MyReportViewer;
protected override void CreateChildControls()
{
MyReportViewer =
new ReportViewer();
MyReportViewer.ParametersAreaVisible =
false; // Tried this but nothing changed
Controls.Add(MyReportViewer);
}
protected override void Render(HtmlTextWriter output)
{
EnsureChildControls();
var LObjetDataSource = new Telerik.Reporting.ObjectDataSource();
LObjetDataSource.DataSource = PopulateDataView(); // Method returning the data in a DataView
Telerik.Reporting.
Report Rapport = new Report();
Rapport.DataSource = LObjetDataSource;
Rapport.ReportParameters.Clear();
// Tried this in order to avoid bad parameters issues
MyReportViewer.Report = Rapport;
MyReportViewer.RenderControl(output);
}Hi All,
I have run into a problem with the Telerik Reporting that I have bought (Q10 2010).
The problem is following:
While I run an Asp.Net application with a Telerik Report under the Windows Server 2008 and an Application pool with integrated managed pipeline mode set – I have an issue (see the Issue.jpg screenshot attached).
As soon as I changed from integrated to classic managed pipeline mode the report starts working fine (see the Image4.jpg screenshot attached).
Thanks to all.