asp.net mvc 水晶报表在 Internet Explorer 10 中显示空白屏幕。但相同的报表在 chrome 和 firefox 中正常工作。谁能给个建议?提前致谢。
问问题
7569 次
2 回答
1
谢谢尼莱什。这解决了这个问题。在水晶报表查看器中,我们必须添加以下代码:
<meta http-equiv="X-UA-Compatible" content="IE=9,chrome=1" />
下面是一个例子。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ReportViewer.aspx.cs" Inherits="Project1.Web.ReportViewer.ReportViewer" %>
<%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
AutoDataBind="True" GroupTreeImagesFolderUrl="" Height="50px"
ReportSourceID="CrystalReportSource1" ToolbarImagesFolderUrl=""
ToolPanelWidth="200px" Width="350px" PrintMode="ActiveX" />
<CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
<Report FileName="~/Reports/Report1.rpt">
</Report>
</CR:CrystalReportSource>
</div>
</form>
于 2013-10-08T13:40:26.247 回答
1
这为我修好了。它忽略了提到的是 CrystalReportViewer 文件夹必须从 Program Files(x86) 复制到 aspnet_client 下的正确子文件夹。您可能已经在 web.config 中有一个块。你只需要一个。第二段代码位于该部分下方。
Copy the folders under "\inetpub\wwwroot\aspnet_client\" and paste them under the root of the custom web site
Add the following to the application web.config file:
<configSections>
<sectionGroup name="businessObjects">
<sectionGroup name="crystalReports">
<section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler"/>
</sectionGroup>
</sectionGroup>
</configSections>
<businessObjects>
<crystalReports>
<crystalReportViewer>
<add key="UseBrowserLocale" value="true"/>
<add key="resourceURI" value="~/aspnet_client/system_web/4_0_30319/crystalreportviewers13" />
</crystalReportViewer>
</crystalReports>
</businessObjects>
确保 web.config 中的文件夹 crystalreportviewers 的名称与 aspnet_client 中的名称相匹配。
于 2013-09-06T17:02:12.343 回答