按钮打印在 webbrower IE 构建中不起作用 ASP.NET Core 7 MVC + FastReport

Button print not working in webbrower IE build ASP.NET Core 7 MVC + FastReport

提问人:Nhat Ho 提问时间:11/14/2023 最后编辑:marc_sNhat Ho 更新时间:11/14/2023 访问量:35

问:

我在 ASP.NET Core 7 MVC 中使用 FastReport 创建了一个应用程序。

视图:

@await ViewBag.WebReport.Render(); 

控制器:

WebReport webReport = new WebReport();
var path = $"{_webHostEnvironment.WebRootPath}\\Report\\RptLichTruc.frx";

webReport.Report.Load(path);
ViewBag.WebReport = webReport; 

enter image description here

但是打印按钮不起作用。

我正在设置驱动器打印

asp.net-core-mvc 快速报告

评论


答: 暂无答案