Hi!
I just joined what seems to be a great forum!
I have som problems with the code for posting binary data to thirdpary site found in this thread:
[URL]
http://www.webforumz.com/
asp-forum/497-posting-binary-data-to-thirdparty-site.htm?highlight=binary[/URL]
On the page that sends the binary post I use the following code togheter with the code posted on the page:
[code]
<%
Set frmPost = New MultiPartFormPost
frmPost.AddFile Server.MapPath("../upload/74_1.
gif"),"Img1"
frmPost.AddFile Server.MapPath("../upload/74_2.
gif"),"Img2"
frmPost.AddFile Server.MapPath("../upload/74_3.
gif"),"Img3"
frmPost.AddField "Name","Martin"
frmPost.Send("
http://192.168.0.40/pro/upload2.
asp")
Set frmPost = Nothing
%>
[/code]
I then use a simple aspupload script to handle the fileupload, but nothing happens. The post is made with no errors but the files are not uploaded.
Someone that have got the code to work?
Please help me!