I have no problem with my form text via Upload.form, however My image file does not seem to be getting saved. Set File = Upload.Files("ImgFile") If Not File Is Nothing Then Filename = file.Filename Response.Write(Filename) File.SaveAs "../Images/Products/" & Filename End If Code (markup): Response.Write(Filename) is correct, So where am I making an error?
does the image file you are uploading have a space in the filename? ie. water[space]lillies.jpg (water lillies.jpg) sometimes this can cause confusion when uploading.
No spaces, I thought about permissions and sure enough did not have write permissions, made no difference though.
it is perfectly working, check it. it may help you in checking and modifying or send the full code to check.