#!/usr/bin/perl /usr/bin/asp-perl This example shows you how to use Apache::ASP to handle file uploads. You need to have a recent version CGI.pm to use this facility. Just click Browse..., select your file, hit 'file upload' and voila!, you will see the data in the file below.
Note that the current limit set on uploads for this demo is <% my $limit = $Server->Config('FileUploadMax') || $CGI::POST_MAX; $limit = ($limit eq '-1') ? 'NONE' : $limit; print "$limit"; %> . <% if($limit && ($limit < $Request->{TotalBytes})) { %> This limit was exceeded by a POST of <%= $Request->{TotalBytes} %> bytes! <% } %>
| <% use CGI; my $q = new CGI; print $q->start_multipart_form(); print $q->hidden('file_upload', 'Hidden File Upload Form Text'); print $q->filefield('uploaded_file','starting value',30,100); print " | "; print $q->submit('Upload File'); %> |
| <%=$key%> | <%=$value%> |
UPLOADED DATA
=============
<%
while(<$filehandle>) {
print $Server->HTMLEncode($_);
}
%>
<% } %>