I'm working with building a large html table that is generated dynamically inside a while loop. Sometimes the table will be less than 30 rows and others it may be hundreds upon hundreds of rows. In netscape, this table is shown on the screen as it is generated which is great. But in IE, the html table is not rendered until the browser receives all of it.
Is there any way to force IE to render the table as it receives it? I though perhaps I could use the flush() function inside the while loop just before a new row is created. But that doesn't seem to do the trick. Any suggestions?