Hi,
This sounds like you are using IE8. Is this the case? What version of Web.UI are you using?
One thing you can do is try putting the page in IE7 emulation mode.
There are two ways to implement this tag:
- On a per-site basis, add a custom HTTP header
X-UA-Compatible: IE=EmulateIE7
- On a per-page basis, add a special HTML tag to each document, right after the <head> tag
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Hope this helps.
Cheers,