http://www.perlmonks.org?node_id=621917


in reply to Upload file from DOS to Unix

You could approach this as an HTML problem. Use the target attribute of the form so that when it is submitted the results of the upload CGI are shown in a different window or different frame. This would allow the user, having selected the file, to submit it multiple times. However, that initial selection must be done by the user - the browser will not give you a way around that.

Replies are listed 'Best First'.
Re^2: Upload file from DOS to Unix
by Anonymous Monk on Jun 19, 2007 at 22:13 UTC

    target="_blank" in the form made it work as I like

    Thanks a lot