
12/12/2002, 22:22
|
| | Fecha de Ingreso: febrero-2002 Ubicación: Mi ASP Bunker
Mensajes: 397
Antigüedad: 23 años, 2 meses Puntos: 1 | |
hola, proba con esta funcion :
Function URL2Var(strURL)
Dim objXML
Set objXML = CreateObject("MSXML2.ServerXMLHTTP")
objXML.Open "GET", strURL, False
objXML.Send
URL2Var = objXML.ResponseText
Set objXML = Nothing
End Function
luego llamas mediante :
page = URL2Var("http://www.algun.com/index.htm")
Response.Write page
otra alternativa q use es a traves del componente InetControls, pero con varios problemas. saludos ! |