mellenburg
Programmer
I'm running an ASP program that takes about 20 minutes to run. Periodically, I have information written to the screen to let the user see the job's progress. I'm using response.flush statements to write the data while the script is still running. When the browser gets to one full screen, it stops writing. In other words, it won't write any line that would make the scroll bar necessary. The job still runs, but I'd like it to keep displying its progress. Is there an option that would make the browser keep displaying information. I have the following two options at the beginning of the program.
session timeout=5000
Server.ScriptTimeout=12000
session timeout=5000
Server.ScriptTimeout=12000