ASP.NET ReportViewer IE 挂起 100% CPU

发布于 2024-10-11 01:51:06 字数 285 浏览 2 评论 0原文

我们最近遇到使用 ReportViewer 控件(Microsoft.ReportViewer.WebForms、Version=9.0.0.0、Culture=neutral、PublicKeyToken=b03f5f7f11d50a3a)在 ASP.NET Web 应用程序中显示的 SSRS (SQL Server 2008) 报告在渲染时挂起的情况一份超过 100 行的报告,导致 Internet Explorer(6、7、8)使用 100%(一个核心)的 CPU。

该报告在 Firefox 中快速呈现(并且不使用高 CPU)。

We've recently been experiencing an SSRS (SQL Server 2008) report displayed in an ASP.NET web application using the ReportViewer control (Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a) hanging when rendering a report with over 100 rows and causing Internet Explorer (6, 7, 8) to use 100% (of one core) of CPU.

The report renders quickly in Firefox (and doesn't use high CPU).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩套路吗 2024-10-18 01:51:06

该问题似乎是由使用 IE PNG Alpha 修复程序(v2.0,作者:Angus Turnbull,http://www. twinhelix.com/)。

我们使用级联样式表将该行为应用于所有 img 和 div 标签:

img, div 
{ 
    behavior: url(script/iepngfix.htc) 
}

仅将该行为应用于我们需要的图像会导致 SSRS 报告再次快速渲染。

The issue seemed to be caused by using the IE PNG Alpha fix (v2.0, by Angus Turnbull, http://www.twinhelix.com/).

We were using a cascading style sheet to apply the behaviour to all img and div tags:

img, div 
{ 
    behavior: url(script/iepngfix.htc) 
}

Applying the behaviour to only the images we required resulted in the SSRS reports rendering quickly again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文