in reply to Hierarchical HTML frame processing (somewhat OT)

This is something that you could probably do much more easily using JavaScript.

It'd be nice to use Perl for everything, but every now and again you have to stray...

<SCRIPT TYPE="text/javascript"> function doSubmit() { parent.framename.document.location.replace('blah.pl'); parent.framename2.document.location.replace('blah2.pl'); } </SCRIPT> .... <FORM onSubmit="doSubmit()"> ....

perl -e 's=$;$/=$\;W=i;$\=$/;s;;XYW\\U$"\;\);sig,$_^=$[x5,print;'

Replies are listed 'Best First'.
Re: Re: Hierarchical HTML frame processing (somewhat OT)
by Gerard (Pilgrim) on Nov 08, 2001 at 04:27 UTC
    I agree with what higle said. This is very similar to what I use and it works quite well.