partial page display

2002-11-26 Thread FFabrizio
I would like to have some of the page display while the rest of the data for the page is still being retrieved (i.e. a Please wait, this operation takes several seconds... kind of message). I thought (perhaps naively) that a print Please wait.\n; at the beginning of my handler would

Re: partial page display

2002-11-26 Thread Issac Goldstand
local $|=1; - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 9:11 PM Subject: partial page display I would like to have some of the page display while the rest of the data for the page is still being retrieved (i.e. a Please wait

RE: partial page display

2002-11-26 Thread FFabrizio
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 2:13 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: partial page display local $|=1; - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 9:11 PM Subject: partial page

RE: partial page display

2002-11-26 Thread Jim Martinez
After much thought on Nov 26 [EMAIL PROTECTED] wrote: I suspect possibly there's some massaging we can do to the header? I wonder if your thinking of the meta tag refresh : META HTTP-EQUIV=Refresh CONTENT=45;URL=http://mydomain.com/tracking.pl Is this a good idea? I hope so, because I'm

Re: partial page display

2002-11-26 Thread Issac Goldstand
: Issac Goldstand [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 2:13 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: partial page display local $|=1; - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 9:11 PM

RE: partial page display

2002-11-26 Thread FFabrizio
PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: partial page display Add a BR/ tag. That's what I throw in to force the browser to flush whatever I fed it onto the screen... Issac - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

Re: partial page display

2002-11-26 Thread Stas Bekman
[EMAIL PROTECTED] wrote: Thanks, finally found the right combination... { local $| = 1; $r-content_type('text/html'); $r-send_http_header; print Testing...\n; } Peruse the docs and they will save your time:

Re: partial page display

2002-11-26 Thread Stas Bekman
Jim Martinez wrote: After much thought on Nov 26 [EMAIL PROTECTED] wrote: I suspect possibly there's some massaging we can do to the header? I wonder if your thinking of the meta tag refresh : META HTTP-EQUIV=Refresh CONTENT=45;URL=http://mydomain.com/tracking.pl Is this a good idea? I

Re: partial page display

2002-11-26 Thread Mike Williams
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 26 November 2002 04:27 pm, Jim Martinez wrote: I wonder if your thinking of the meta tag refresh : META HTTP-EQUIV=Refresh CONTENT=45;URL=http://mydomain.com/tracking.pl Is this a good idea? I hope so, because I'm using it. One