reporting services - How to show external images in the same folder as the SSRS report in Design Mode? -
hi using sql server data tools 2012 create ssrs (.rdl) reports. inserted image external rather embedded , actual image file put right next .rdl file within same local harddrive folder.
the issue in design mode, image not show. in preview mode, image not show either until copy bin\debug folder.
the above annoying report , image showing fine when both deployed onto report server under same path.
any way make image shows in design mode , tell ssdt act smart copy image file debug folder?
thank you
is image uploaded on report server well?
if yes, work in both preview mode , when deployed using following expression
=iif(globals!reportserverurl = nothing, "http://yourserver/reportserver", globals!reportserverurl) + "?%2fimage%2fyourlogo.png"
this example assumes have image name "yourlogo.png", located in "image" folder in report server.
in visual studio, globals!reportserverurl null expression uses actual report server url locate image.