> I'm trying to
> think whether there's any way at all (perhaps using frames?) to split
things
> up so I can dynamically report the progress of that string of commands.
('Cause the
> whole operation takes about 40 seconds.) I'd like to provide "progress"
reports like
> this:
>
> Logging in....
> Successfully logged in...
> Generating a file...
> Downloading the file...
> Done!

Unfortunately, this won't be easy for you. One of CF's major drawbacks is
that it doesn't send anything to the browser to display until the whole page
has completed running.  In ASP, for example, you can flush the response
buffer whenever you want, which lets you print incremental status lines to
the user.

To do this with CF you'll have to split the process up into discrete
sections and make each section its own page call. Neither pretty nor
efficient, but I can't think of any other way (short of using ASP that is).

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to