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


in reply to CGI script to open a new browser window?

You're not creating a new browser window from the CGI script. You're creating a new window based on the user pressing a button in the current browser window. What you need to do is place that button inside a form that has the second script as its action and target set to '_new' (or an unused window name). Something like this in the page generated by Maintain.cgi:

<form action="filetran.cgi" target="_new"> <input type="submit" value="Start Filetran"> </form>
90% of every Perl application is already written.
dragonchild
  • Comment on Re: How to Start a seperat explorerer window/cgi script from a running explorer window/cgi script
  • Download Code