Mi intrometto nella discussione.
Per inviare dati in post,si deve aggiungere il content-type che non è implicito:
codice:
Function SendPost(Url,Data,ResponseIsBinary)
Dim Http
Set Http = Server.CreateObject("Microsoft.XMLHTTP")
Http.Open "POST",Url,False
Http.setRequestHeader "Content-Type","application/x-www-form-urlencoded"
Http.Send(Data)
If ResponseIsBinary then
SendPost = Http.ResponseBody
Else
SendPost = Http.ResponseText
End If
Set Http=Nothing
End Function
Response.Write SendPost ("http://wwww.sito.it/pagina.asp","a=1&b=1&c=1",False)
L'ultimo parametro (ResponseIsBinary) è il tipo di risposta attesa.
Se aspetti in output un'immagine o un file non testuale, metti true