Crystal Report Viewer Control Does Not Load Images Inside a Report

I have an ASP.Net application (.Net 2.0) that creates Crystal Reports (version 11.5) and shows them using the CrystalReportViewer control. For some reason, the control does not display the logo image in the report header. It displays the following html

<img width="320" height="76" alt="Imagem" src="CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_e47fba99-96fc-471b-ab11-06fd2212bbdd.png" border="0"/>

I already included the aspnet_client folder in my virtual directory in IIS.

Any ideas why this is happening?

+4
source share
2 answers

Just got it.

For some reason, CrystalImageHandler was not defined in the web.config file.

HttpHandler, . ( Version PublicKeyToken Crystal Reports)

<add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
+4

httpHandlers.

, CR2008 aka XII

0

All Articles