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

Hi All,

I have a ASP page in which a file is uploaded,Iam able to retrieve that file path but what I actually need is that,some PERL code to save that retrieved file in a local folder.

Do help in this regard..

Thanks

Replies are listed 'Best First'.
Re: To save a file
by Corion (Patriarch) on Aug 04, 2008 at 06:15 UTC

    Pages written in ASP are usually not Perl. I guess what you mean is that you have written a CGI script to which a request is submitted from a HTML page that is generated by a program written in ASP.

    Most likely, you will want to look into CGI.pm, especially the upload function.