Javascript: why is our website extremely slow in a Terminal Services session?

We created a website that relies heavily on Javascript and has quite a lot of DOM-elements.

In all browsers, even IE7 and IE8, this works fine. The user experience is a bit faster and more responsive in IE9, Chrome and Firefox, but even our clients that use IE7 don't complain.

BUT... clients that use a remote desktop complain that our website is much too slow, even when using IE9 on Windows 2008 Server (64-bit). Some pages that normally take only 1 second to load, now take up to 30 seconds! The reason is not a slow internet connection, other websites load quickly, only our website doesn't. And when these clients use Chrome it's very fast, so the problem is somehow in the combination of remote desktop and IE.

Now here comes the strange part : when the button "compatibility mode" is clicked in IE9, our website is fast again!

What could cause these extreme differences in speed?

We thought using <!DOCTYPE html> in IE9 was the best practice, but it seems that in a remote desktop session somehow we should use quirks-mode or force compatibility mode??

Any thoughts on this subject?

UPDATE

We found a solution : disabling CSS rounded corners for IE9 !
(see the accepted answer)


We finally found out the reason behind the delays !

We use Jquery UI with a theme that has many rounded corners (using CSS).

The rounded corners bring IE9 to a grinding halt in a Terminal Services session!! (IE10 doesn't seem to have this same problem).

Unfortunately there's no way to detect if someone is using Terminal Services, because Microsoft was stupid enough to use the same browser version number for Windows 7 and Windows 2008 Server (!), so we decided to disable rounded corners on our website for all users with IE9.

链接地址: http://www.djcxy.com/p/36530.html

上一篇: 如何使用Javascript创建和下载csv文件?

下一篇: Javascript:为什么我们的网站在终端服务会话中速度非常慢?