I have the same issue. here is my code:
<!-- #include file="aspuploader/include_aspuploader.asp" -->
<%
Dim uploader
Set uploader=new AspUploader
uploader.MaxSizeKB=10240
uploader.Name="myuploader"
uploader.MultipleFilesUpload=False
uploader.SaveDirectory="../ResumeFiles"
uploader.AllowedFileExtensions="*.doc,*.txt,*.rtf"
uploader.Render()
If Request.Form("myuploader") & "" <> "" Then
Dim mvcfile
Set mvcfile=uploader.GetUploadedFile(Request.Form("myuploader"))
Response.Write mvcfile.FileName()
End If
%>
The file was uploaded but I got the following error when I tried to get the name of the file uploaded. If I remove IF ... END IF statement, I do not get the error. I chatted with the CuteSoft Tech Support but no luck. Does anyone know why?
aspuploader/include_aspuploader.asp
Line Number: 438
Brief Description: Object required: 'jfile'
Thanks.