Set PersistsUpload = Server.CreateObject("Persits.Upload.1")
PersistsUpload.Save
set persistsfile = PersistsUpload.Files("file")
When I am uploading the file the following error is returned:
Request.BinaryRead failed: Unspecified error
Set PersistsUpload = Server.CreateObject("Persits.Upload.1")
PersistsUpload.Save
set persistsfile = PersistsUpload.Files("file")
When I am uploading the file the following error is returned:
Request.BinaryRead failed: Unspecified error
In most cases it means that your upload script uses Request.Form or Request.QueryString prior to calling Upload.Save XXX. As a result, the BinaryRead method of the Request object fails.