Hai
I have an asp.net application using report viewer to display report from sql reporting service 2012.
When Report Viewer connect to reporting server 2012 on the same machine which is in my computer, it works fine.
After I change the report server url to connect with another machine which is windows server 2008 r2.
The report viewer always refresh the report.
Could anyone help me to stop the report viewer refreshing the report?
Here is the code on aspx page load event:
ReportViewer1.ProcessingMode = ProcessingMode.Remote;
ReportViewer1.ServerReport.ReportServerCredentials = new ReportServerNetworkCredentials();
ReportViewer1.ServerReport.ReportPath = "/nota penjualan/nota";
ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://xxxx.xxx.xx/ReportServer_MIKE");
Thanks in advance.
Deky