How is the array created and initialized, or
processed?
Usually I have something like this when there is a big loop in
JScript which means just too much processing, or so many objects (array items)
being created that it takes very long and appears to hang the browser (nothing
can happen for a long time)
Solution usually is to break things up, optimize code, put
loop iterations into timeouts, and do things while the timeouts occur so the
browser shows activity, like the loading bars or some creative animation(or
game?)
Or redesign why you have 400 records, you can load dynamically
using panels.
todd.
|