Crystal Report layout After the picture does not show the situation, divided into two types:
One is: Crystal Report the picture on the toolbar does not show;
The second is: Crystal Report of the picture object does not show;
Solutions for the first case:
For the picture on the toolbar does not show up because of the published server, the Crystal Report required for the site-related picture style was not found.
In the Crystal Report picture does not appear on the page, look at the source code of the page. Can be found between
Copy Code code as follows:
<link href= "/aspnet_client/system_web/2_0_50727/crystalreportwebformviewer3/css/default.css"
Rel= "stylesheet" type= "Text/css"/>
This includes the relevant styles and the pictures needed on the Crystal report.
Specifically in this directory of the machine:
Copy Code code as follows:
C:\Inetpub\wwwroot\aspnet_client\system_web\2_0_50727
In the CrystalReportWebFormViewer3 folder.
You can copy this directory from your development machine to the server to solve the problem.
Solutions for the second case:
The picture objects designed for the Crystal Report are not displayed on the published server.
Workaround:
Configuration files at the site
In web.config. Under the relevant section, add the following.
Copy Code code as follows:
<add verb= "Get" path= "crystalimagehandler.aspx type=" CrystalDecisions.Web.CrystalImageHandler, Crystaldecisions.web, version=11.5.3700.0, culture=neutral, publickeytoken=692fbea5521e1304 "/>
Can solve the Crystal report in the picture object does not show the problem.