我正在将我的web应用程序从Visual 2008 (.NET Framework3.5)升级到Visual 2015(.Net Framework4.5.2)。应用程序中大约有8-10个客户端RDLC报告。我将所有这些转换为新的框架.NET 4.5.2。
在我放置报表查看器控件的页面上,我为最新的IE浏览器设置了meta标记(如下所示)
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
但是,当我运行这些报告时,我会得到以下错误。
Browser not supported
Report Viewer requires a standards compliant browser. Users of Internet Explorer 8 and earlier should switch to a modern browser, or if already using a modern browser target standards mode by adding the
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
header tag to the host page.
SERVER 2008 R2安装在我的计算机上。请告诉我怎么回事?
发布于 2017-04-26 12:25:51
我通过添加DOCTYPE标记来解决这个问题,因为我们正在将应用程序从.Net 3.5升级到.Net 4.5.2。
以前我们使用过Reportviewer 9,现在使用的是ReportViewer 12.0。
谢谢
https://stackoverflow.com/questions/40995582
复制相似问题