in reply to Re: apache::asp
in thread apache::asp

Or:
my $fh = $Request->FileUpload('upload_file', 'FileHandle'); use File::Copy; copy $fh, "/where/you/want/to/write/it" or die "...";

-- Randal L. Schwartz, Perl hacker