http://qs321.pair.com?node_id=93711

writhe has asked for the wisdom of the Perl Monks concerning the following question:

I am using FormMail in a page with two frames. There is a redirect on the submission of the form that works, but it remains in the frameset. I'd like for the script to redirect to a page without frames. Here's the standard script:
if ($Config{'redirect'}) { print "Location: $Config{'redirect'}\n\n"; }

and I've tried this (which does not work):
if ($Config{'redirect'}) { print "Window-target: _top\n"; print "Location: $Config{'redirect'}\n\n"; }

Any help would be great.

Originally posted as a Categorized Question.