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

50 Views Asked by At

I created an app in ASP.NET Core 7 MVC and using FastReport.

View:

@await ViewBag.WebReport.Render(); 

Controller :

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

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

enter image description here

But the print button is not working.

I was setup drive print

0

There are 0 best solutions below