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 script.

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 that will NOT

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 or

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, For my server, I nee

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