I\'m using the client-side reporting capabilities that are bundled in with Visual Studio 2010. I\'ve got an RDLC file defined, currently with embedded images for branding p
I was having the same problem, however the accepted solution didn't quite work for me. Turns out that I needed to set EnableExternalImages to true in addition to providing the path in URI format and setting my Image.Value to =Parameters!ReportLogo.Value
.
report.EnableExternalImages = true;
ReportParameter[] parameters = new ReportParameter[3];
...
Uri pathAsUri = new Uri(_info.LogoPath);
parameters[2] = new ReportParameter("ReportLogo", pathAsUri.AbsoluteUri);
report.SetParameters(parameters);