Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 409941
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:50:22+00:00 2026-05-12T17:50:22+00:00

I have an update panel in an ascx page using .Net 3.5. The user

  • 0

I have an update panel in an ascx page using .Net 3.5.

The user enters data, initiates a callback, and ajax updates the DOM.

Usually everything’s all hunky dory. Once in a while the DOM gets updated and IE doesn’t bother refreshing the display. The entire updated area appears to be blank.

Once the user does something that would trigger a refresh, like resizing the window, the data instantly appears on the screen, but not until then.

Why is this? What could cause it? How can it be fixed?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:50:23+00:00Added an answer on May 12, 2026 at 5:50 pm

    You can ‘fix’ it by switching to real browsers 🙂

    Really, you might be able to fix it according to the trick I found in this page.

    Basically, what you need to do is create an empty node and delete it locally after you update the DOM with your new content:

    var t = document.createTextNode('temp text');
    element.appendChild(t); // Not sure if this is any element
                            // or one inside your new DOM nodes.
    setTimeout(function() { t.parentNode.removeChild(t); }, 0);
    

    In that page the author says:

    Even with my “fix,” it only works if
    the user moves their mouser cursor out
    of the window and back in.

    But I guess that’s as good as it gets… I think IE may not be triggering a refresh unless there’s some activity on the browser window, to save processing time.

    That’s been a known really annoying bug in IE for a long time now, although I can’t find it posted anywhere. In fact, even Opera has that bug from time to time.

    Also, even if you solve it using that trick, check that every single piece of HTML is valid. You can check it in http://validator.w3.org. If some piece of code is invalid, then you can’t blame the browser for not understanding what you meant.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.