FastReport报表,FastReport报表加载不出来

2018-06-22 07:39:16来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

插件链接:
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 开发服务器】
 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:[开源ORM] SqliteSugar 3.x .net Core版本成功上线

下一篇:提高ASP.NET应用程序性能的十大方法