|
hace 1 año | |
---|---|---|
.. | ||
Application | hace 1 año | |
Controllers | hace 1 año | |
Resources | hace 1 año | |
Services | hace 1 año | |
Templates | hace 1 año | |
Directory.Build.props | hace 1 año | |
Directory.Build.targets | hace 1 año | |
FastReport.OpenSource.Web.csproj | hace 1 año | |
FastReport.Web.Shared.props | hace 1 año | |
README.md | hace 1 año |
<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.