gpt4 book ai didi

c# - 带有 Visual Studio 2013 的 Crystal 报表 aspnet_client/system_web/4_6_81

转载 作者:行者123 更新时间:2023-11-30 13:16:36 26 4
gpt4 key购买 nike

我对我在 Visual Studio 2013 中使用的 SAP Crystal Report 的行为完全感到困惑。当我运行我的 ASP.NET Web 应用程序时,我得到以下文件夹路径 aspnet_client/system_web/4_6_81/crystalreportviewers13/而不是 C:\inetpub\wwwroot\aspnet_client\system_web\4_0_30319\crystalreportviewers13。在我的 IIS 7.5 C:\inetpub\wwwroot\aspnet_client\system_web) 中找不到任何此类文件夹。你能帮我解决这个问题吗?因此,我无法看到该报告。

请查看以下屏幕截图以供引用 enter image description here

最佳答案

最可靠的解决方案是在 IIS 中的应用程序下创建一个虚拟目录:

  1. 转到 IIS,右键单击您的应用程序

  2. 添加虚拟目录设置物理路径为C:\inetpub\wwwroot\aspnet_client\system_web\4_0_30319\crystalreportviewers13\

  3. 将虚拟路径设置为/crystalreportviewers13

  4. 在您的 web.config 文件中,在根元素之后添加以下内容:

    <configSections>
    <sectionGroup name="businessObjects">
    <sectionGroup name="crystalReports">
    <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null" />
    <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
    </sectionGroup>
    </sectionGroup>
    </configSections>
  5. 然后在您的 web.config 文件中添加:

    <businessObjects>
    <crystalReports>
    <rptBuildProvider>
    <add embedRptInResource="true" />
    </rptBuildProvider>
    <crystalReportViewer>
    <add key="ResourceUri" value="~/crystalreportviewers13" />
    </crystalReportViewer>
    </crystalReports>
    </businessObjects>

关于c# - 带有 Visual Studio 2013 的 Crystal 报表 aspnet_client/system_web/4_6_81,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31721443/

26 4 0
文章推荐: c# - 是否有使用 is 和 as 的理由?
文章推荐: ios - 如何使用 UISplitViewController iOS 在 iPad 上强制以纵向模式显示 MasterViewController
文章推荐: C# 创建具有动态属性的对象 : LINQ select List values by property names array