为什么脚本在 IE 11 中花费太多时间?
why script take too time in IE 11?
在我的 asp.net 应用程序中,使用 IE11 进行调试响应时间太长。(最少 2 分钟)。IE 说 "localhost not responding dut to a long running script."。我如何检查哪个脚本花费的时间太长?
This is running script list in vs.
This is IE profiler order by inclusive time.
禁用浏览器 Link 选项。
Here
问题的原因是浏览器 Link 功能需要禁用动态压缩。 dynamicCompressionBeforeCache 属性允许 IIS 在第一次发出请求时动态压缩响应并将内容排队进行压缩。启用此属性时,页面加载速度更快,而如果禁用它,则会导致额外的 CPU 消耗并增加页面 load.More Information Here =>Troubleshooting issue related to browser link feature
在我的 asp.net 应用程序中,使用 IE11 进行调试响应时间太长。(最少 2 分钟)。IE 说 "localhost not responding dut to a long running script."。我如何检查哪个脚本花费的时间太长?
This is running script list in vs.
This is IE profiler order by inclusive time.
禁用浏览器 Link 选项。
Here
问题的原因是浏览器 Link 功能需要禁用动态压缩。 dynamicCompressionBeforeCache 属性允许 IIS 在第一次发出请求时动态压缩响应并将内容排队进行压缩。启用此属性时,页面加载速度更快,而如果禁用它,则会导致额外的 CPU 消耗并增加页面 load.More Information Here =>Troubleshooting issue related to browser link feature