This is my first time using the Microsoft Report Viewer control, and I think it is very straight forward, but I keep getting the following error:
An error occurred during local report processing. The report definition for report 'Report3' has not been specified Object reference not set to an instance of an object.
I have a view from my Oracle database that I am using that looks like this:

I look at the GUI and create a "New Report" and add this DataSet to the "Table". I used Query Builder to create the “FillByModel” and “GetDataByModel” functions, and they all returned the correct data from the database, but when I launch the page on which the ReportViewer control is installed, it gives me the above error. I have no idea what this error means, and after Googling got rid of it and tried everything I don’t know how to resolve it.
Here is the .aspx code for my ReportViewer object:
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt"> <LocalReport ReportEmbeddedResource="Paint_Reporting.Report3.rdlc"> <DataSources> <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="LOL" /> </DataSources> </LocalReport> </rsweb:ReportViewer> <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OnSelecting="ObjectDataSource1_Selecting" SelectMethod="GetData" TypeName="PaintModelNumberDetailTableAdapters.PAINT_MODELNUMBERDETAILLISTINGTableAdapter"></asp:ObjectDataSource> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager>
Can someone help me figure out this error?
source share