asp could not find a part of the path

silviufn

New member
Joined
Feb 19, 2011
Messages
1
Programming Experience
Beginner
hi there,
i have a problem. i have searched this isue to see if it was posted but i could not find any solutions.
a try to import excel file into msql. it was working just fine but now a have two erros:
- asp could not find a part of the path
- unspecified error
on test server its working ok but on production server i get this errors.
thank you
 
Looking at the error, I think the actual problem is in the way you retrieve your file. As errors described above, it seems you are testing on your local machine with local folder path "C:\Test.docx",so its working fine. But when you are publishing on production server, it is on the different machine i think. so the path "C:\Test.docx" is not working there. To solve this you have to save your document in your web application folder itself so you can retrieve your file.
 
Back
Top