ERROR:
An error occurred during local report processing. An error has occurred during report processing. Cannot create a connection to data source ‘<data_source>’.
ObjectDataSource ‘<object_data_source>’ could not find a non-generic method ‘GetData’ that has parameters: <list_of_parameters>.
POSSIBLE SOLUTION:
Open the DataSet file (the one with all the TableAdapters, likely dsAEMSReports.xsd) and find the TableAdapter that links to the data that feeds your table.
Right-click -> Preview Data…
The names and data types you need in <list_of_parameters> is listed in the Parameters window.
Go back to your .aspx file and find the ObjectDataSource, SelectParameters section, and ensure that each of your parameters has an <asp:___Parameter> entry that identifies how the parameter gets populated.
0
0