Guest_imported
New member
- Jan 1, 1970
- 0
Is it possible to launch a long process and return a page before it's finished, preferrably in Perl? (Windows platform, IIS + frontpage extensions). Thanks!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/local/bin/perl
use CGI;
$| = 1; # set autoflush to 'on'
my $object = new CGI;
print $object->header,
$object->start_html,
"<p>Starting the new processes shortly</p>",
$object->end_html;
exec "system_command, @args";