For Crystal Report 11 to work in IIS, you might have to ensure that the web.config file contains the following entries:
<httpHandlers>
<add path="CrystalImageHandler.aspx"
verb="GET"
type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0" />
</httpHandlers>
<system.webServer>
<handlers>
<add name="CrystalImageHandler.aspx_GET"
verb="GET"
path="CrystalImageHandler.aspx"
type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0"
preCondition="integratedMode" />
</handlers>
</system.webServer>
No comments:
Post a Comment