I did use the correct way as suggested by Microsoft web site
for displaying image in Page Header
1) Created a textbox10 with
=System.Convert.ToBase64String(First(Fields!Logo.Value, "ABC")) in body and hide it
2)Then created an image in Page Header
=System.Convert.FromBase64String(ReportItems!textbox10.Value) and settings are MIME - bmp and source-Database
3) no image is displayed in page header
If I create an image with same value in body - =System.Convert.FromBase64String(ReportItems!textbox10.Value), it displays image
but in Page header - it is blank, nothing is getting displayed
What is missing?
for displaying image in Page Header
1) Created a textbox10 with
=System.Convert.ToBase64String(First(Fields!Logo.Value, "ABC")) in body and hide it
2)Then created an image in Page Header
=System.Convert.FromBase64String(ReportItems!textbox10.Value) and settings are MIME - bmp and source-Database
3) no image is displayed in page header
If I create an image with same value in body - =System.Convert.FromBase64String(ReportItems!textbox10.Value), it displays image
but in Page header - it is blank, nothing is getting displayed
What is missing?