After a form is submitted, it's passed to a Facade component that works with the data (in my case, it duplicates object instances) After the script is done the user is shown a "success!" text on the page.
I'd like to output the progress of the script. I was thinking that I could write each step of the script. Something like:
"Copy method started"
"Copy method finished"
"Copy method copied 3 activities"
I think I can achieve this if I can find something in coldfusion similar to the PHP
system() function
Any idea how i can do this? As always, your help is greatly appreciated.
I'd like to output the progress of the script. I was thinking that I could write each step of the script. Something like:
"Copy method started"
"Copy method finished"
"Copy method copied 3 activities"
I think I can achieve this if I can find something in coldfusion similar to the PHP
system() function
Any idea how i can do this? As always, your help is greatly appreciated.
Comment