FastReport报表,FastReport报表加载不出来
生活随笔
收集整理的這篇文章主要介紹了
FastReport报表,FastReport报表加载不出来
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
插件鏈接: Demo地址:http://pan.baidu.com/s/1dEXUvsP FastReport.Net軟件地址:https://pan.baidu.com/s/1c2kNBVi 使用方法: 第一步:添加引用 FastReport.Bars.dll FastReport.dll FastReport.Web.dll dll包:http://pan.baidu.com/s/1pKJwXoZ 第二部:配置config 1、View文件夾內配置web.config文件,添加兩個引用 2、網站配置文件web.config添加節點httphandlers iis6:
<httpHandlers>
<add path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport" />
</httpHandlers>iis7:
<handlers>
<add name="FastReportHandler" path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport"/>
</handlers> 配置config 第三部:控制器代碼 1、視圖 @WebReportGlobals.Scripts()
@WebReportGlobals.Styles()
@ViewBag.WebReport.GetHtml() 視圖 2、控制器 private WebReport webReport = new WebReport();
public ActionResult Index()
{SetReport();webReport.Width = 600;webReport.Height = 800;webReport.ToolbarIconsStyle = ToolbarIconsStyle.Black;ViewBag.WebReport = webReport;return View();
}
private void SetReport()
{string report_path = AppDomain.CurrentDomain.BaseDirectory;//傳遞數據webReport.Report.RegisterData(new List<object> { new { Type = "Type", Mobile = "mobile", Price = "price", Date = "date", Title = "title", Ad = "ad" } }, "Orders");//調用模板webReport.Report.Load(report_path + "order.frx");
} 控制器
錯誤: FastReport報表加載不出來并且報404錯誤: 解決方案: 當前項目->屬性->Web->服務器->選中單選【使用Visual Studio 開發服務器】
轉載于:https://www.cnblogs.com/minmin0320/p/6006627.html
總結
以上是生活随笔為你收集整理的FastReport报表,FastReport报表加载不出来的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【原】iOS学习之Xcode8关于控制台
- 下一篇: Sublime插件支持Sass编译和Ba