当前位置: 代码迷 >> .NET报表 >> rdlc 动态获取图片干页眉,页脚
  详细解决方案

rdlc 动态获取图片干页眉,页脚

热度:10641   发布时间:2013-02-25 00:00:00.0
rdlc 动态获取图片作页眉,页脚
 pathHeadUrl = @"http://localhost:90/files.ashx?file=report/template/mets/2_footer.jpg";

  ReportParameter  imageHead = new ReportParameter("HeadImgUrl", pathHeadUrl);

 List<ReportParameter> parameterList = new List<ReportParameter>();
            parameterList.Add(imageHead);

 this.ReportViewer1.LocalReport.SetParameters(parameterList);
            this.ReportViewer1.LocalReport.Refresh();

问题是,“http://localhost:90/files.ashx?file=report/template/mets/2_footer.jpg”,可以在浏览器中看到,
但是作为值传给参数时,导出word后,显示不出来图片。多谢指教!!!


------解决方案--------------------------------------------------------
rdlc如何设置页眉为网上图片?