Crystal Reports/ASP.NET: Fix images not appearing on your reports

When the images won’t appear on your reports and you can’t get them back, try this code. It worked for me.

Basically, this tells dotnet to use the Crystal Reports image viewer to get the image and use it on the report. You’ll need to put this is the section of your web.config file.

You may need to change the version number in this string to get it to work. You should be able to tell from the other Crystal includes in web.config.

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

Leave a Reply

You must be logged in to post a comment.