问题描述
你好,
我已经开发了rdl报告。当报表项目部署到iis时,它在reportviewer中显示。
ReportViewer1.ProcessingMode = ProcessingMode.Remote;
ServerReport serverReport = ReportViewer1.ServerReport ;
serverReport.ReportServerUrl = new Uri(http:// localhost / reportserver);
serverReport.ReportPath =Project1 / Report1;
当我必须在现场访问此报告时,我必须将哪些文件复制到服务器。我在TargetServerURL属性中使用了我的实时网站URL进行部署,但是它的提供文档移动了错误。如何部署报表项目以实现。你能为此提出任何解决方案。
谢谢
Hello,
I have developed rdl report. Its displaying in reportviewer when report project was deployed to iis.
ReportViewer1.ProcessingMode = ProcessingMode.Remote;
ServerReport serverReport = ReportViewer1.ServerReport;
serverReport.ReportServerUrl = new Uri("http://localhost/reportserver");
serverReport.ReportPath = "Project1/Report1";
When i have to access this report on live which files i have to copy to the server. I used my live website url at TargetServerURL property to deploy, but its giving document moved errors. How can i deploy report project to live. Can you suggest any solution for this.
Thanks
推荐答案
这篇关于ssrs实时部署的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!