经过一天的搜索后,我无法弄清楚为什么水晶报告无法在网络浏览器上正常渲染...(字体总是roboto,保证金不正确)
我已经尝试过了 Crystal Reports will not render correctly
我正在使用visual studio 2013,IIS 8,水晶报告13
这是我加载cr报告的示例代码
public ActionResult Test()
{
ReportDocument rpt = new ReportDocument();
rpt.Load(Path.Combine(Server.MapPath("~/Reports"), "Test.rpt"));
Stream stream = rpt.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
return File(stream, "application/pdf");
}
请帮帮我们..