| Usuario |
Microsoft.XMLHTTP (URGENTE) |
Desconocido
|
| Enviado - 11/7/2002 |
| |
El código siguiente no funciona correctamente.
Se come los Acentos y las letras siguientes.
Alguien tiene una idea mejor?
Gracias.
dim HTTP, URL
set HTTP = Server.CreateObject ("Microsoft.XMLHTTP")
URL = "http://www.teflonvip.com.ar/prensa/admin/CreaHtml.asp?IdCli=" & _
IdCli
'URL = "http://robbie/prensa/admin/CreaHtml.asp?IdCli=8&usuCli=8"
HTTP.open "GET", URL , False
HTTP.Send
if HTTP.statusText="OK" then
Response.write HTTP.ResponseText
else
Response.write "Error obteniendo Página: " & URL & "<br>"
Response.write HTTP.statustext
end if |
| |
|
|
|