R
rn5a
When a user posts a HTML Form in an ASP page, the values entered by
the user in the Form are mailed to the website owner. Users can also
attach a file before posting the Form.
To send the e-mail, I am using CDO.MESSAGE. When I tested the app in
my local intranet IIS5.1 server, the e-mail part worked fine & even
the attachment was sent along with the mail but after deploying the
site at godaddy.com, when I try to send a file from my local hard disk
as an attachment, I get the following error:
===================================
CDO.Message.1 error '80070003'
The system cannot find the path specified.
====================================
which points to the line that does the attachment which is
cdoMessage.AddAttachment Request.Form("uploadfile")
It's pretty obvious what's causing the error - the ASP file resides
onthe server whereas the file to be attached exists in the users local
hard drive but the question is how do I resolve this error?
Please note that users will attach files from their local hard disks.
the user in the Form are mailed to the website owner. Users can also
attach a file before posting the Form.
To send the e-mail, I am using CDO.MESSAGE. When I tested the app in
my local intranet IIS5.1 server, the e-mail part worked fine & even
the attachment was sent along with the mail but after deploying the
site at godaddy.com, when I try to send a file from my local hard disk
as an attachment, I get the following error:
===================================
CDO.Message.1 error '80070003'
The system cannot find the path specified.
====================================
which points to the line that does the attachment which is
cdoMessage.AddAttachment Request.Form("uploadfile")
It's pretty obvious what's causing the error - the ASP file resides
onthe server whereas the file to be attached exists in the users local
hard drive but the question is how do I resolve this error?
Please note that users will attach files from their local hard disks.