0

現在、 http:// localhost / Report_SqlExpress / Pages / Report.aspx?ItemPath = /personnel_reportのようなURLを持つsrsレポートがあり ます。 レポートビューアコントロールを使用して、次のようにしてこのレポートを表示しようとしました。

<rsweb:ReportViewer ID="ReportViewer1" runat="server" ProcessingMode="Remote" 
                                Font-Names="Verdana" Font-Size="8pt" Height="400px" Width="400px"  >
                                <ServerReport 
                                ReportServerUrl="http://localhost/Report_SqlExpress" ReportPath="personnel_report" />

                             </rsweb:ReportViewer>

しかし、私はエラーが発生し続けます

The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.

リクエストはHTTPステータス404:見つかりませんで失敗しました。

誰かが私がこれを修正する方法を知っていますか?

ありがとう

4

1 に答える 1

1

問題は、レポートパスの前にスラッシュが必要だったことです。愚かな私。

于 2009-04-28T17:22:39.757 に答える