IE clears whole web page when paging, Firefox does not

  • Thread starter Thread starter Urs Eichmann
  • Start date Start date
U

Urs Eichmann

Hello
I have an ASP.NET web site where you can page through lists by using
INPUT TYPE=image buttons. I noticed that, in IE6, the whole page gets
cleared and built again from the ground up, whereas in Firefox, the page
stays on screen until the server's answer is here. The page is built
mainly with CSS layouts and DIV's/SPAN's, altough, for the list view of
the actual result, a TABLE is used.


The clearing of the page every time the user paginates the view is very
tiresome for the eyes. I noticed that, when you paginate e.g. in google,
the screen doesn't get cleared.

Does anyone know of a certain tag or layout that causes this behaviour?

Thanks for any help
Urs
 
most browsers try to avoid redrawing, by comparing the current dom, to
thenext requested pages parsed dom. how successfully they are is browser
dependant, an content dependant. your layout may be too complex for IE, and
it decides to rebuild rather than update.

-- bruce (sqlwork.com)
 
Bruce,
thanks for the answer. There are lots of pages in the WWW which deal
with IE / firefox CSS quirks etc. But I couldn't see any which would
help me in this matter. Do you know any?
Urs
 
Hi Urs,

I also agree with Bruce that this is a browser behavior and somewhat
related to the page's html dom structure. In fact, we can also test this
through a static html page which the similiar content to see whether it'll
have the same behavior.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Date: Wed, 13 Jul 2005 09:19:03 +0200
| From: Urs Eichmann <[email protected]>
| Reply-To: (e-mail address removed)
| User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7)
Gecko/20040616
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: Re: IE clears whole web page when paging, Firefox does not
| References: <#[email protected]>
<#[email protected]>
| In-Reply-To: <#[email protected]>
| Content-Type: text/plain; charset=us-ascii; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: adsl-213-200-246-99.cybernet.ch 213.200.246.99
| Lines: 1
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:111871
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Bruce,
| thanks for the answer. There are lots of pages in the WWW which deal
| with IE / firefox CSS quirks etc. But I couldn't see any which would
| help me in this matter. Do you know any?
| Urs
|
| Bruce Barker wrote:
|
| > most browsers try to avoid redrawing, by comparing the current dom, to
| > thenext requested pages parsed dom. how successfully they are is
browser
| > dependant, an content dependant. your layout may be too complex for IE,
and
| > it decides to rebuild rather than update.
| >
| > -- bruce (sqlwork.com)
| >
| >
| >
| > | >
| >>Hello
| >>I have an ASP.NET web site where you can page through lists by using
INPUT
| >>TYPE=image buttons. I noticed that, in IE6, the whole page gets cleared
| >>and built again from the ground up, whereas in Firefox, the page stays
on
| >>screen until the server's answer is here. The page is built mainly with
| >>CSS layouts and DIV's/SPAN's, altough, for the list view of the actual
| >>result, a TABLE is used.
| >>
| >>
| >>The clearing of the page every time the user paginates the view is very
| >>tiresome for the eyes. I noticed that, when you paginate e.g. in
google,
| >>the screen doesn't get cleared.
| >>
| >>Does anyone know of a certain tag or layout that causes this behaviour?
| >>
| >>Thanks for any help
| >>Urs
| >
| >
| >
|
 
Back
Top