문제

I want to show reports generated using stimulsoft in a ASP.NET webpage. I have loaded the report and registered the datasource related to the report using the following code. But I am having issues with displaying it in a web page. What should I do to display this in a web page.

StiReport report = new StiReport();
report.Load("D:/Work/AllClassifieds/DevSourceBranch/WebSolution/Website/Reports/Price Sensitivity/PriceSensitivity.mrt");
report.RegData("PriceSensitivityData", ds);
도움이 되었습니까?

해결책

You should put StiWebViewer or StiWebViewerFx on the ASPX page and pass the report to it with next code:

StiWebViewer1.Report = report;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top