Hi,
I have sql reports which are available in server and when try to integrate in .aspx page by adding reportviewer control I am getting
rsItemNotFound error.
proctected void btnresponse_Click()
{
reportviewer1.processingmode=processingmode.Remote;
ReportViewer1.ServerReport.ReportServerUrl = new Uri(@"http://myserver/ReportServer");
ReportViewer1.ServerReport.ReportPath="/Reports/reportdeployed/1_rti_maden";
ReportViewer1.ServerReport.Refresh();
}
Go to the complete details ...