FastReport报表MVC使用步骤如下:

1、创建MVC网站项目

最终DEMO如下图所示

FastReport报表MVC显示步骤-LMLPHP

2、引用相关DLL

FastReport.dll

FastReport.Web.dll

3、Web.config中增加配置

<system.webServer>
<handlers>
<add name="FastReport-Export" path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport" />
</handlers>
</system.webServer>

4、Action代码

     public class HomeController : Controller
{
public ActionResult Index()
{
var webReport = new WebReport(); var dataPath= Server.MapPath("~/frAssets/Reports/nwind.xml");
var dataSet = new System.Data.DataSet();
dataSet.ReadXml(dataPath);
webReport.Report.RegisterData(dataSet, "NorthWind"); var reportPath = Server.MapPath("~/frAssets/Reports/SimpleList.frx");
webReport.Report.Load(reportPath); webReport.Width = Unit.Percentage();
webReport.Height = Unit.Percentage();
//设置Toobar图标样式
webReport.ToolbarIconsStyle = ToolbarIconsStyle.Black;//ToolbarIconsStyle.Custom;
//设置Background样式
webReport.ToolbarBackgroundStyle = ToolbarBackgroundStyle.Medium;
//设置自定义按钮图片路径
webReport.ButtonsPath = "/frAssets/Buttons/";
//本地化文件
webReport.LocalizationFile = "/frAssets/Localization/Chinese (Simplified).frl";
webReport.PrintInPdf = false;
ViewBag.WebReport = webReport;
return View();
} }

5、View中引入样式

 @WebReportGlobals.Scripts()
@WebReportGlobals.Styles()

6、View中添加报表呈现代码

 <div id="report-wrapper">
@ViewBag.WebReport.GetHtml()
</div>

7、报表居中样式处理

    <style type="text/css">
html > /**/ body .container {
margin:;
max-width: 100%;
} #report-wrapper .frtoolbar {
width: 100%;
} #report-wrapper #frbody {
text-align: center;
} #report-wrapper #frbody > div {
margin: 0 auto;
} html > /**/ body #report-wrapper span > div > div {
display: block;
text-align: center;
}
</style>

8、项目Demo源码

https://files.cnblogs.com/files/WangHuaiSheng/FastReportMvcDemo.7z


FastReport报表MVC显示步骤-LMLPHP 文章作者:花生(OutMan)

发布地址:http://www.cnblogs.com/WangHuaiSheng/

发布时间:2018年3月15日

本文版权归作者和博客园共有,欢迎转载,

但未经作者同意必须保留此段声明,

且在文章页面明显位置给出原文连接。

 
05-07 00:07