[IE Crashes]

2006-03-28 Thread Deva Pitchai(NatureSoft)

Hi group...

Any idea at which stage, will the browser(IE or Moz) crashes when 
handling a jsp application.


how many lines a browser can handle, without a crash?

is there any limitation of the web page size?

any thoughts appreciated.

--
Regards,
Deva.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [IE Crashes]

2006-03-28 Thread David Delbecq
for Moz, you can go to the mozilla bugtrack to get a list of existing
browser bugs.
For ie, you might need to get the releas note of each ie patch released
by microsoft.

There is no maximum size supported by browser. However, the most you put
in the html, the slowest browsr will be at the rendering and the most
memory it will require. As an example, we have a web application here
which can output a full server history. This is about a 10M html file
with lots of table. IE took about 30 minute render it, moz about 3
minutes. In general, i'll recommend outputing a page, not a book :)


Deva Pitchai(NatureSoft) a écrit :

 Hi group...

 Any idea at which stage, will the browser(IE or Moz) crashes when
 handling a jsp application.

 how many lines a browser can handle, without a crash?

 is there any limitation of the web page size?

 any thoughts appreciated.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [IE Crashes]

2006-03-28 Thread Slattery, Tim - BLS
 Any idea at which stage, will the browser(IE or Moz) crashes when 
 handling a jsp application.

A browser sees HTML (and sometimes Flash and Shockwave and Java applets
and). It does not see JSP pages. It has no idea whether the page
it's rendering was generated by JSP, Java servlets, ASP, PHP, a CGI
process in C++, Perl, or Python, or whether it was static HTML. It has
no reason to care.
 
 how many lines a browser can handle, without a crash?

I don't think that IE or Firefox have a limit any more.

 is there any limitation of the web page size?

Not to my knowledge.

--
Tim Slattery
[EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [IE Crashes]

2006-03-28 Thread Paul Benedict
About a year ago, some articles came out toutting how great IE
was compared to Firefox because Firefox 1.0ish, would crash during
some very bad malformed HTML, but IE would not. You're not using
Mozilla, but perhaps IE is crashing due to bad markup? Check it out. 

When these kind of things happen, I rip out the entire page and put it
back piecemeal. Add a group lines back at a time, reload the page
through your browser, test for a crash, and repeat. Eventually you'll
put back the entire page and this should hone in on what lines are causing
the crash.

-- Paul

--- Slattery, Tim - BLS [EMAIL PROTECTED] wrote:

  Any idea at which stage, will the browser(IE or Moz) crashes when 
  handling a jsp application.
 
 A browser sees HTML (and sometimes Flash and Shockwave and Java applets
 and). It does not see JSP pages. It has no idea whether the page
 it's rendering was generated by JSP, Java servlets, ASP, PHP, a CGI
 process in C++, Perl, or Python, or whether it was static HTML. It has
 no reason to care.
  
  how many lines a browser can handle, without a crash?
 
 I don't think that IE or Firefox have a limit any more.
 
  is there any limitation of the web page size?
 
 Not to my knowledge.
 
 --
 Tim Slattery
 [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]