laconicdev
laconicdev

Reputation: 6440

IE 7 stops responding

In our asp.net 2.0 web application, there is a user control with validation. For some reason, when the validation fails, the pages looks fine, however, no controls (asp buttons, scroll bars, or third party like Telerik text editor) respond to mouse inputs. The only work around is to resize the browser window which will make the UI responsive. Has anyone seen this issue before? What could be causing it?

Upvotes: 0

Views: 227

Answers (3)

Chase Seibert
Chase Seibert

Reputation: 15851

I have seen IE freeze up when resizing if there are expressions in the CSS.

#container{
    width: expression(document.body.clientWidth > 1100)? "1100px" : "auto";
}

It's easy to get yourself into a situation where two elements are resizing based on each other, which can cause an infinite loop where the browser locks. In any case, expressions will stop working in IE8 standards mode, so they should be removed anyway.

Upvotes: 0

awilinsk
awilinsk

Reputation: 2044

Check your CSS and/or javascript. It sounds like there is a transparent element (like a div) beging placed over the elements in the page.

Upvotes: 0

Andrew Bullock
Andrew Bullock

Reputation: 37378

Does it happen in other browsers? Are you talking client side validation or server side (does it actually post back?) Have you tried removing all CSS and seeing if it still happens? If it doesn't, add the css back bit by bit until it break again and youve found the culprit!

Upvotes: 2

Related Questions