Description: |
To enable progressive rendering of the server response, set UseProgressiveRendering
to 1.
By default, JFile will cache the server response until it is complete, that is, progressive
rendering is disabled. If you expect a very long response from the server, you may
want to render it progressively as it is received.
|
Some browsers (for example, Netscape 4), display erratic behavior if progressive
rendering is enabled and the response contains <script>, <style>, or
<link> tags. Whenever possible, we have
split these tags across multiple write operations to the browser,
however this does not resolve the problem for all versions across all platforms.
If the response is simple, progressive rendering should work well. If there
are many of the above mentioned tags (and possibly others we have not yet
discovered), it would be safer not to use progressive rendering. |
|