Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

charts are not rendered in report viewer

Status
Not open for further replies.

newbeenthere

Programmer
May 10, 2006
4
FR
Using VS2005, I have rendered reportviewer in aspx page. However, chats are not rendered in this report. I have read the KB and support on crystal report site and applies the two KB suggestions, authorization and using gacutil.exe. The problem is that I can't find CrystalImageHandler.aspx anywhere on system that render the charts. This is after compiling and running the code.
Help anyone?

Thanks
 
Never mind, I got it.
Here is the code you need to add in web.config before the end of </system.web>
<xhtmlConformance mode="Legacy"/>
<httpHandlers>
<add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
</httpHandlers>
I added this and then compiled it and this worked for me.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top