I attempted to run the Image Upload script, however i encountered an error. I honestly haven't gone through everything trying different variations -- then again its harder to debug someone else's work then your own. Anyway my Error is...
///error///
File INSERT.ASP
Line: 112
Error: Item cannot be found in the collection corresponding to the requested name or ordinal.
//end of error//
This is what is at line 112.....
///script//
Line 104 --> rs.Open "Files", connStr, 2, 2
' Adding data
rs.AddNew
rs("File Name") = fileName
rs("File Size") = fileSize
rs("File Data").AppendChunk fileData
rs("Content Type") = contentType
**Line 112--> rs("First Name") = fnameInput
rs("Last Name") = lnameInput
rs("Profession") = profession
rs.Update
rs.Close
Line 118--> Set rs = Nothing
//end of script//
I've checked the correct spelling of the lnameInput in the INSERT.htm
Let me know if you come up with anything...
If you want to test the LIVE version please goto....
www.uedhq.com/ImageLoader/insert.htm
Thanks in advanced!