0

我们有一个自定义的 .net 报告应用程序,它试图加载一个稍微数据密集的 SSRS 报告。奇怪的是,当报告通过报告管理器和 Mozilla Firefox 运行时,报告运行良好并返回数据,尽管速度有点慢。The problem is when a user attempts to load it through the Report Application in IE9, when all parameters are selected to maximize the data returned (20k rows), the report gets stuck on the Loading animation. 浏览器最终冻结,需要强制关闭。报表对象本身的数据集中没有指定超时时间,报表管理器中也没有指定任何超时设置。报表服务器执行日志显示 TimeDateRetrieval 和 TimeProcessing 时间,表明报表加载成功。

我们已经将 web.config 文件中的 httpRunTime 参数配置为:

 <httpRuntime executionTimeout = “600”&gt;

我们还尝试如下配置 ViewReport.aspx 文件

 <asp:ScriptManager ID="ScriptManager1" runat="server" AsyncPostBackTimeout="0"> </asp:ScriptManager>

有什么建议么?

4

1 回答 1

0

看起来报告查看器模块中的 ASyncPostBackTimeout 属性设置已更改。将其恢复为 ASyncPostBackTimeout="0" 就可以了。它确实与脚本管理器有关。

于 2013-03-04T19:36:32.357 回答