I have a perlScript form that asks for a file e.g.
<%@LANGUAGE='PerlScript'%>
<%
$Response->Write("
<html>
<head>
</head>
<body>
<form action='editRST.asp' enctype='multipart/form-data' method='post'>
<p>
Please specify a file:<br>
<input type='file' name='file' size='35'>
</p>
<div>
<input type='submit' value='Send'>
</div>
</form>
</body>
</html>
");
%>
and another to gather the data sent and upload to a database e.g.
<%@LANGUAGE="PerlScript"%>
<%
my $attachment=$Request->form("datafile")->Item($index);
##some more code...ect
%>
My problem is that $Request->form("datafile") only seems to return the file name. Is there a way to gather this data correctly. I am also aware that I can use a CGI script with $query->upload('param') but please just assume that I can only use perlScript.