Array Expansion 原型导致无法显示 stimulsoft 报告

Array Expansion prototype cause the stimulsoft report can not be display

当我想在 ascx 中使用以下代码显示我的 mrt 报告时

<cc1:StiMobileViewer ID="StiMobileViewer1" ShowDesignButton="false" runat="server" />

和 .cs 中的以下代码

 StiReport report = new StiReport();
 report.Load(Server.MapPath(CRMResources.DynamicReportResources + "ChartForBillTest.mrt"));

StiMobileViewer 什么都不显示。

您应该将报告分配给查看者。

StiMobileViewer1.Report = report;

最后我发现我应该升级到新版本的 stimulsoft 2016。