How to create the report in the controller without the aspx?
I made the following code below but I am not getting html print screen
I made the following code below but I am not getting html print screen
public ActionResult test() { var instanceReportSource = new Telerik.Reporting.InstanceReportSource(); instanceReportSource.ReportDocument = new myReport(); ReportViewer report = new ReportViewer(); report.ID = "Teste"; report.Width = 100; report.ReportSource = instanceReportSource;return ??}