G
Guest
I have a form with various info and when the submit form button is pressed
the code in referral_process.asp is run:
<FORM action=referral_process.asp
method=post encType=multipart/form-data>
I am trying to upload the data (in PDF format) to an FTP site:
This is the referral_process.asp code:
Thank you for uploading your file.<br>
<% Set upl = Server.CreateObject("Referral.pdf") %>
<% upl.SaveAs "C:\temp\upload.out" %><BR>
Total Bytes Written: <%=upl.TotalBytes%>
it is failing on server.createObject("Referral.pdf") above. I don't have a
much experience instantiating objects and I was wondering if anyone could
give me some ideas on what to do here?
Thanks,
Phil
the code in referral_process.asp is run:
<FORM action=referral_process.asp
method=post encType=multipart/form-data>
I am trying to upload the data (in PDF format) to an FTP site:
This is the referral_process.asp code:
Thank you for uploading your file.<br>
<% Set upl = Server.CreateObject("Referral.pdf") %>
<% upl.SaveAs "C:\temp\upload.out" %><BR>
Total Bytes Written: <%=upl.TotalBytes%>
it is failing on server.createObject("Referral.pdf") above. I don't have a
much experience instantiating objects and I was wondering if anyone could
give me some ideas on what to do here?
Thanks,
Phil