I am using the aspsmartupload component to upload a file to the server and
whenever it reaches this line of code it
option explicit
dim mysmartupload
dim intcount
set mysmartupload = server.CreateObject("aspsmartupload.smartupload")
mysmartupload.AllowedFilesList="doc,txt"
mysmartupload.DenyPhysicalPath =true
This line of code results in the following error message:
aspSmartUpload (0x800A0009) Subscript out of range
mysmartupload.Upload
intcount=mysmartupload.Save("/uploadtrial/uploadfiles")
response.Write intcount
How to rectify this problem?
Anu