I am trying to update about 15,000 records in a SQL database. The app is in CF and everytime I run it, the browser timesout. Also, I don't even know how far the update has run.
The code basically runs like this:
<CFOUTPUT query="x"> <!-- About 15,000 records -->
<CFLOOP index="y" from="1" to="100" step="1">
...
</CFLOOP>
</CFOUTPUT>
Can I have an update display across the screen that says something like this:
10 Records Updated ..
20 Records Updated ..
etc ..
I am assuming this will prevent the browser timeout as well as give me an update as to the progress. Thanks.
The code basically runs like this:
<CFOUTPUT query="x"> <!-- About 15,000 records -->
<CFLOOP index="y" from="1" to="100" step="1">
...
</CFLOOP>
</CFOUTPUT>
Can I have an update display across the screen that says something like this:
10 Records Updated ..
20 Records Updated ..
etc ..
I am assuming this will prevent the browser timeout as well as give me an update as to the progress. Thanks.