在我的网页中嵌入 SSRS

Embedding SSRS in my webpage

我正在尝试在我的网页中使用现有的 SSRS 报告 (ASP.net)

我在我的页面中使用 ReportViewer 并设置服务器报告和报告路径

但报告未显示并出现此错误

项目“/TEST/Financial/WIP+帐户”的路径无效。完整路径必须少于 260 个字符;其他限制适用。如果报表服务器处于本机模式,路径必须以斜杠开头。 (rsInvalidItemPath)

我看了这个

但仍然无法正常工作

这是我的代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Main.aspx.cs" Inherits="DeployRep.Main" %>

<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
 <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
   <div>

    </div>
        <rsweb:ReportViewer ID="ReportViewer1" runat="server" Width="1239px" ProcessingMode="Remote" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
            <ServerReport ReportServerUrl="http://mySSRSServ/reportserver" ReportPath="/TEST/Financial/WIP+Account"/>

        </rsweb:ReportViewer>
    </form>
</body>
</html>

我找到了答案

我收到错误的原因是单词之间的 + 号 我将其替换为 space 然后它起作用了

        <ServerReport ReportServerUrl="http://mySSRSServ/reportserver" ReportPath="/TEST/Financial/WIP Account"/>