Displaying image in RDLC
- by stackBest2
I am working on a c# windows application. My problem is, I have stored jpg images in a folder. I need to retrieve the image from that folder and should display in the report(rdlc). I have written the following code but the image is not displaying.
List<ReportParameter> param = new List<ReportParameter>();
param.Add(new ReportParameter("path", @"C:\picture\1.jpg"));
reportViewer1.LocalReport.SetParameters(param);