Crystal Report Viewer not showing Images

22,740

Solution 1

Have you tried looking in your Web.config for the CrystalImageHandler (in httpHandlers section)? I had to add a line to get my embedded images to show up:

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

Solution 2

If you are all alright on the Web.config section, and if you are on netFramework greater than 4.0 try this.

On the App_Start Folder, look for RouteConfig.cs and comment out the following line

 Settings.AutoRedirectMode= RedirectMode,Permanent;

Solution 3

Please also try to change .Net Framework mode from Integrated to Classic in the ApplicationPool configuration (IIS Application Pools)

Solution 4

I'm using ASP.NET MVC after 2 days of searching this solved my issue and image showed up the solution just add the following line to your file RouteConfig.cs

1- go to folder App_Start in your project

2- paste the following ignore line to the file RouteConfig.cs :

routes.IgnoreRoute("{*allaspx}", new { allaspx = @".*(CrystalImageHandler).*" });
Share:
22,740
Brijesh Patel
Author by

Brijesh Patel

Updated on July 05, 2022

Comments

  • Brijesh Patel
    Brijesh Patel almost 2 years

    I am using Crystal Report v9x. In the data which is displayed in Crystal Report Viewer having the images. When i am trying to show the reports in the Crystal Report viewer, Images are not showing up.

    Can any one give me some idea what to do?