asp.net project-framework 4.0 に Crystal Report 13 を使用しています。アプリケーションをローカルで実行している場合、レポートは完全に実行されます。しかし、インターネット経由でアクセスすると、以下のエラーが発生します。
Server Error in /Reports Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /Reports/ReportViewer.aspx
Version Information: Microsoft .NET Framework Version:2.0.50727.4927 ASP.NET Version:2.0.50727.4927
しかし、フレームワーク 4 を使用しています。しかし、上記のエラーでは、.net Framework2 が表示されています。レポートを除く他のすべてのフォームは機能しています。IIS で行う必要がある変更はありますか? バージョン IIS7.5 を使用しています IIS をブラウズしても、このエラーが発生します。解決方法を誰か教えてくれませんか?
<httpHandlers><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></httpHandlers></system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<handlers>
<add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx"
type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0,Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"/>
</handlers>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>