Updating multiple frames in one CGI processing cycle

2002-03-27 Thread Ted Markowitz
As I understand it, because of the single-request/single-response nature of the HTTP protocol and the way frames are treated as individual, separate pages, that there's no way to get results from a form in one frame, process it with a CGI script and the output a new page to both that frame AN

Re: Using -T (taint) in perl scripts on Win32

2002-03-01 Thread Ted Markowitz
l"; my $tmpl = new HTML::Template( filename => TMPL_FILE ); my $time = localtime; $tmpl->param( current_time => $time ); print "Content-type: text/html\n\n", $tmpl->output; --ted - Original Message - From: "W P" <[EMAIL PROTECTED]> To: "

Re: Using -T (taint) in perl scripts on Win32

2002-03-01 Thread Ted Markowitz
s odd, but just removing the -T (even with the -w left in) from the #! line in the source file is enough to make the web server execute it properly. --ted - Original Message - From: "Brent Michalski" <[EMAIL PROTECTED]> To: "Ted Markowitz" <[EMAIL PROTECTED]&

Using -T (taint) in perl scripts on Win32

2002-03-01 Thread Ted Markowitz
I'm having difficulty using the -T switch with perl in the #! line in cgi scripts on my Win2K system using a Netscape 4.1 web server. If I use something like "#!c:/perl/bin/perl.exe -wT" on the 1st line, the server complains with an HTTP 500 error about the script not producing valid headers