Posted on: 2/7/2014 9:21:36 PM | Views : 622

I have a ReportViewer to display a parent report and by clicking the parent report, some parameter will be passed on to child report and the child report is presumably to be displayed.
I got this error mesage:
An error occurred during local report processing. The report definition for report 'Report2.rdlc' has not been specified Could not find file 'C:\RXie\wwwroot\WebSite2\Report2.rdlc.rdlc' Can any one tell me why it is looking for C:\RXie\wwwroot\WebSite2\Report2.rdlc.rdlc, not C:\RXie\wwwroot\WebSite2\Report2.rdlc?
Below is the code to handle the drillthrough:
Protected Sub ReportViewer1_Drillthrough(sender As Object, e As DrillthroughEventArgs) Handles ReportViewer1.Drillthrough Try 'Variable to store the parameter value passed from the MainReport. Dim ...

Go to the complete details ...