in reply to Re: redirect back to where you were
in thread redirect back to where you were
In your HTML form simply place a hiden tag:# script head above if($q->param('f') eq 'done'){ print '<SCRIPT Language=\'JavaScript\'> history.go(-1) </SCRIPT>'; }
Similarly, you could place the CGI::redirect object within this conditional block. Forgive me if this is a simplistic response, but it's not very clear what you're after.<INPUT TYPE=hidden NAME=f VALUE=done>
|
|---|