我在项目中有这种活动
报告forlder - >图像文件夹,报告 - > Rdlc
在rdlc中我将图像源设置为外部并使用参数
将参数添加到报表调用时,报表不会出现
我写了像
这样的参数“file:images \ icon.jpg”是否有一定的扩展使用或为什么导致报告不显示,我试图删除图像,报告工作正常
答案 0 :(得分:1)
你应该以这种方式将完整的图像路径传递给你的图像,如果你像你已经完成那样传递它我不会发生它会起作用。
ReportViewer1.LocalReport.EnableExternalImages = true;
ReportViewer1.LocalReport.SetParameters(new ReportParameter("image", "file:///" + Server.MapPath("~/images/icon.jpg",true));