Skip to content Skip to sidebar Skip to footer

Browser Showing Half Progress Bar Even After Page Is Fully Rendered

what could be the reason if browser is showing progress bar (stuck at half) as if it is still trying to load something, even after the page is rendered. this is an intranet ASP.NET

Solution 1:

Check if u have behavior attached to any control. It happens sometime due to behavior.

Solution 2:

Do you have any onload scripts that are using document.write() that don't call document.close() when they're done? This will cause the browser to wait, expecting more...

Solution 3:

Post a Comment for "Browser Showing Half Progress Bar Even After Page Is Fully Rendered"