Ujwal Khairnar
Ujwal Khairnar

Reputation: 548

Unnecessary Image box in RDLC report

I have developed one report using .net rdlc. In that report it is showing image box. although I did not used image in the report. I have also checked the xml of the rdlc report . The xml also dose not have any image.

Please help me.

Thanks!

[The site dose not allow me to upload image :) ]

Upvotes: 0

Views: 1240

Answers (1)

Ujwal Khairnar
Ujwal Khairnar

Reputation: 548

Add following line of code in head section under style tag which will remove blank image from the RDLC.

<style>
    body:nth-of-type(1) img[src*="Blank.gif"] {
        display: none;
    }
</style

enter image description here

above is the sample problem in RDLC report in report viewer.

Upvotes: 1

Related Questions