ASP.NET Core 报告 - 允许外部图像

问题描述 投票:0回答:1

我的项目中存在外部图像问题;我有一个

.rdlc
文件,我需要从数据库加载图像,但数据库中只有文件名,如
logo.png
,文件位于文件夹
C:/Images
中。

.rdlc
设计师中,我尝试这样做:

enter image description here

我的视图模型在 dotvvm 中工作:

enter image description here

但是由于错误,我无法添加

localReport.EnableExternalImages = true;

LocalReport 不包含定义 EnableExternalImages

有人可以帮助我吗?我会为此感到非常高兴。

我尝试了

localreport.EnableExternalImages = true
,但在.NET Core中,它不起作用并尝试在RDLC设计器中找到选项

c# .net-core report rdlc
1个回答
0
投票

我找到了解决方案,只需在声明您的

localreport

后添加此代码即可
LocalReport localReport = new LocalReport(PathYourReport);

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.