|
hai 1 ano | |
---|---|---|
.. | ||
Application | hai 1 ano | |
Controllers | hai 1 ano | |
Resources | hai 1 ano | |
Services | hai 1 ano | |
Templates | hai 1 ano | |
Directory.Build.props | hai 1 ano | |
Directory.Build.targets | hai 1 ano | |
FastReport.OpenSource.Web.csproj | hai 1 ano | |
FastReport.Web.Shared.props | hai 1 ano | |
README.md | hai 1 ano |
<PackageReference Include="FastReport.Web" Version="*" />
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
...
app.UseFastReport();
...
}
public IActionResult Index()
{
var webReport = new WebReport();
webReport.Report.Load("path/to/report.frx");
return View(webReport);
}
@model FastReport.Web.WebReport
<div>
@await Model.Render()
</div>
FastReport.Web for Core supports latest versions of Chrome, Firefox, Safari, Opera and Edge browsers.