From: Igor on
Hi,

In my ASP.NET project I have web form with reportviewer control in local mode.
My main report has link to the drillthrough detail report.
When I load my main report using:
ReportViewer.LocalReport.ReportPath = Server.MapPath(myPath)
everything is working fine but when i load my main report using:
ReportViewer.LocalReport.LoadReportDefinition(mySteram)
the control cannot find the drillthough report.

I need to use LoadReportDefinition in order to change some settings on the
fly.
How can I solve this?

Thanks.