in reply to CGI progress indicator
this seems to work for me (in mozilla 0.9.4/linux and IE5.5/win2k):
#!/usr/bin/perl -w use strict; use CGI qw/:standard /; $| = 1; print header(); print<<ENDHTML; <html><head><title>progress test</title></head> <body> ENDHTML foreach my $i (1..10) { print $i, "<br />\n"; sleep 3; } print "</body></html>"; exit 0;
if you don't include the starting html tags, IE refuses to show anything until it's all done loading. maybe that's your problem?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CGI progress indicator
by JungleBoy (Scribe) on Oct 02, 2001 at 01:23 UTC | |
|
Re: Re: CGI progress indicator
by Anonymous Monk on Nov 12, 2002 at 20:44 UTC |