Re: Script that stays on the same page

2000-07-09 Thread jeff
what about returning the http no response code 204. as in print $query->header('text/html','204 No response'); will trillich wrote: > Pierre-Yves BONNETAIN wrote: > > > >Hello, > > > >For my server, I need to write some script that will be 'regularly' > > triggered (GET or POST), but th

Re: Script that stays on the same page

2000-07-09 Thread will trillich
Pierre-Yves BONNETAIN wrote: > >Hello, > >For my server, I need to write some script that will be 'regularly' > triggered (GET or POST), but that will NOT send the user to another page. The > user must stay on the same page he is, without ANY html being exchanged as > a result of the scr

RE: Script that stays on the same page

2000-07-05 Thread Howard Jones
PROTECTED] Subject: Re: Script that stays on the same page I would try using a Non-Parsed-Header (NPH) script and return something like this: print << "END"; HTTP/1.0 204 No Response END Dana On Mon, 03 Jul 2000, Pierre-Yves BONNETAIN wrote: > Hello, > >

Re: Script that stays on the same page

2000-07-05 Thread Dana Powers
I would try using a Non-Parsed-Header (NPH) script and return something like this: print << "END"; HTTP/1.0 204 No Response END Dana On Mon, 03 Jul 2000, Pierre-Yves BONNETAIN wrote: > Hello, > >For my server, I need to write some script that will be 'regularly' > triggered (GET o

Re: Script that stays on the same page

2000-07-03 Thread Alan Sparks
It's generally not a good idea to follow up a user action with a page that doesn't change... The lack of feedback makes people very nervous. Notwithstanding, you can accomplish this by sending back a Status: of 204 (No Change) and a content-type: of text/html -- with no entity body. The browser

Script that stays on the same page

2000-07-03 Thread Pierre-Yves BONNETAIN
Hello, For my server, I need to write some script that will be 'regularly' triggered (GET or POST), but that will NOT send the user to another page. The user must stay on the same page he is, without ANY html being exchanged as a result of the script. This will be used to change paramete