我正在使用 ssrs 进行报告。我正在发送参数列表,其中包括图像 url 作为参数。我的报告在渲染时无法显示图像。
我的图像位于我的网络应用程序的根文件夹中。
我已经发送了这样的图片网址
string path = "http://" + Request.Url.Host;
path = path + ":" + Request.Url.Port;
path = path + "/Image/Logo.png";
querystrings.Add(new KeyValuePair<string, string>("Logo_Url", path));`
- 打开报告时一切正常,但是当我将其导出为 pdf 时,无法查看图像。
我希望我的问题很清楚。我已经努力澄清,以便我能得到帮助。先感谢您。
为我的问题提供更多许可
Report.ServerReport.SetParameters(lst1);
byte[] b = Report.ServerReport.Render("PDF");Response.Clear();
Response.ContentType = "application/pdf";
Response.OutputStream.Write(b, 0, b.Length);
Response.End();
这就是我将报告导出为 pdf 的方式。希望我能对此有所了解