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如何设置页眉为网上图片?