Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/02/2006, 17:13
Avatar de davidcr
davidcr
 
Fecha de Ingreso: septiembre-2004
Ubicación: Cartago Costa Rica
Mensajes: 95
Antigüedad: 20 años, 7 meses
Puntos: 7
Creo saber lo que necesitas

Prueba este codigo creo que es lo que necesitas

Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")

' Notice the two changes in the next two lines:
xml.Open "POST", "http://www.mundovirtual.co.cr/hola.asp", False
xml.setRequestHeader "Content-Type","application/x-www-form-urlencoded"
xml.Send "dato=hola"
Response.Write xml.responseText
Set xml = Nothing


Yo tambien dure mucho tiempo antes de encontrarle la solucion a poder pasar un dato POST mediante el Microsoft.XMLHTTP