I am trying to use TWebModule in to upload a file.
My HTML is:
<html>
<body>
<FORM METHOD=POST ENCTYPE="multipart/form-data"
ACTION="http://www.doughale.com/cgi-bin/Upload.exe">File to upload:
<INPUT TYPE=FILE NAME="upfile">
<INPUT TYPE=SUBMIT VALUE="Submit">
</FORM>
</body>
</html>
Where is the actual file and length at in the Request object and how
do i get it out. Request.Files.Count is always 0.
Request.ContentFields[4] seems to contain the file data as one of the
strings, but only the first bytes up to the first 0.
Doug