Hi Experts,
I am getting the error: does not implement IReportServerConnection
Exception Details: Microsoft.Reporting.WebForms.InvalidConfigFileTypeException: The type '......' does not implement IReportServerConnection.
My Code
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="1222px">
<LocalReport ReportPath="Report1.rdlc">
<DataSources>
<rsweb:ReportDataSource DataSourceId="SqlDataSource1" Name="DataSet1" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
<asp:SqlDataSource ID= ...
Go to the complete details ...