473,385 Members | 1,769 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

NN vs. IE - time to render page

In NN/FF/Moz, it takes 20 sec to render a page from a file of 330 KB.

It takes less than 1 sec to render that file in IE.

Is there some tweak that I can make on NN to alter this? The difference
is absolutely annoying and unacceptable.
Jul 23 '05 #1
6 1595


Paul Thompson wrote:
In NN/FF/Moz, it takes 20 sec to render a page from a file of 330 KB.

It takes less than 1 sec to render that file in IE.

Is there some tweak that I can make on NN to alter this? The difference
is absolutely annoying and unacceptable.


Are you using any JavaScript in that page that you think causes the
problem? If so post a URL.
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 23 '05 #2
Martin Honnen wrote:


Paul Thompson wrote:
In NN/FF/Moz, it takes 20 sec to render a page from a file of 330 KB.

It takes less than 1 sec to render that file in IE.

Is there some tweak that I can make on NN to alter this? The
difference is absolutely annoying and unacceptable.

Are you using any JavaScript in that page that you think causes the
problem? If so post a URL.


There is actually no Javascript on the page. If you could point me to a
more appropriate list, I would ask my question there.
Jul 23 '05 #3
In article <cd**********@newsreader.wustl.edu>, pa**@wubios.wustl.edu
enlightened us with...

There is actually no Javascript on the page.


Um, then why did you post to a JS group? ;)
If you could point me to a
more appropriate list, I would ask my question there.


Since the problem appears to be with your browser, you'd be better off
on a browser-specific list.
NN/FF/Moz are all based on the same engine.

Try the groups mentioned here.
http://www.mozilla.org/support/
--
--
~kaeli~
Murphy's Law #2030: If at first you don't succeed, destroy
all evidence that you tried.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #4
Paul Thompson wrote:
There is actually no Javascript on the page. If you could point me
to a more appropriate list, I would ask my question there.


This is no mailing list, it is a public Usenet newsgroup:
<http://en.wikipedia.org/wiki/Usenet>
HTH

PointedEars
Jul 23 '05 #5
On Thu, 15 Jul 2004 13:16:07 -0500, Paul Thompson wrote:
In NN/FF/Moz, it takes 20 sec to render a page from a file of 330 KB.

It takes less than 1 sec to render that file in IE.

Is there some tweak that I can make on NN to alter this? The difference
is absolutely annoying and unacceptable.


One thing I've noticed, Gecko tends to load the entire table before
displaying any of the cells, whereas IE displays cells as the document is
parsed, changing cell widths and / or heights as necessary.

Other than that, I don't know why Gecko would be slower than IE.

BTW, you should probably state which version of Netscape you are comparing
with which version of IE.

La'ie Techie

Jul 23 '05 #6
L??ie Techie wrote:
On Thu, 15 Jul 2004 13:16:07 -0500, Paul Thompson wrote:
In NN/FF/Moz, it takes 20 sec to render a page from a file of 330 KB.

It takes less than 1 sec to render that file in IE.

Is there some tweak that I can make on NN to alter this? The difference
is absolutely annoying and unacceptable.


One thing I've noticed, Gecko tends to load the entire table before
displaying any of the cells, whereas IE displays cells as the document is
parsed, changing cell widths and / or heights as necessary.

Other than that, I don't know why Gecko would be slower than IE.

BTW, you should probably state which version of Netscape you are comparing
with which version of IE.

La'ie Techie


You may be able to compensate for the slow rendering of large tables in
Netscape 7+/Gecko-based browsers using some of the tweaks available at <url:
http://www.tweakfactor.com/articles/...oxtweak/4.html />.
Specifically: user_pref("nglayout.initialpaint.delay", 0);

However, any such fix will only affect your own PC, it is unlikely you will be
able to convince all of your audience using Gecko-based browsers to make this
change in their own environment.

Disclaimer: the only changes I have made as shown on the URL above are:

user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.proxy.pipelining", true);

They have improved browsing performance for me in Gecko-based browsers, your
experience may differ.

--
Grant Wagner <gw*****@agricoreunited.com>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref
* Tips for upgrading Javascript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html

comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: RICHARD BROMBERG | last post by:
I am writing an ASP program that includes a Form. When the Form is submitted I use the Date() and Time() functions to put the date and time into the Body part of the e-mail. The time reported is...
1
by: Tomas | last post by:
Is there any sequence diagram on the web that clearly shows in which order all Page methods (load, render and so on) are being called compared to the order the page's contained control methods are...
0
by: Cabral | last post by:
Hi I creating object in run-time and render the webform, but when I want drop this object I don´t render the page without this object, but in next autopostback of the webform is render correct ...
4
by: Zuel | last post by:
Hi Folks. So I have a small problem. My DoPostBack function is not writen to the HTML page nor are the asp:buttons calling the DoPostBack. My Goal is to create a totaly dynamic web page where...
5
by: sk | last post by:
Hi, I'm trying to override the Render method of my Page class. Are there any standard guidelines for this? Thanks. Shardul
2
by: Tony | last post by:
I have a very peculiar problem that I am hoping someone can point me in the right direction on. I have an asp.net page that displays a virtual paycheck to a user. One asp.net page calls another...
7
by: Shimon Sim | last post by:
I have a custom composite control I have following property
13
by: Bob Jones | last post by:
Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains...
2
by: Ryan | last post by:
Hello everyone, Here is what I would like to accomplish, I have a webpart 'portal' where each webpart is in an updatepanel. I would like the page to load and the webparts to load as they become...
4
by: Ken Fine | last post by:
I've been living with a frustrating issue with VS.NET for some months now and I need to figure out what the problem is. Hopefully someone has run into the same issue and can suggest a fix. I...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.