提问人:Nhat Ho 提问时间:11/14/2023 最后编辑:marc_sNhat Ho 更新时间:11/14/2023 访问量:35
按钮打印在 webbrower IE 构建中不起作用 ASP.NET Core 7 MVC + FastReport
Button print not working in webbrower IE build ASP.NET Core 7 MVC + FastReport
问:
我在 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;
但是打印按钮不起作用。
我正在设置驱动器打印
答: 暂无答案
评论