Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/11/2003, 01:06
neri
 
Fecha de Ingreso: enero-2002
Mensajes: 64
Antigüedad: 22 años, 3 meses
Puntos: 0
Muchas gracias por las opciones, encontre algo que tambien me sirvio muy bien, a ver si a alguien le sirve si busca hacer este tipo de cosas solo que lo hice en ASP,

dim cadena
cadena = Request.QueryString("cadena")
if cadena="" then
cadena = "http://paginax"
end if

Response.Buffer = True
Dim objXMLHTTP, xml

' Create an xmlhttp object:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
' Or, for version 3.0 of XMLHTTP, use:
' Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")

' Opens the connection to the remote server.
xml.Open "GET", cadena, False
' Actually Sends the request and returns the data:
xml.Send

'Display the HTML both as HTML and as text
Response.Write "<h1>The HTML text</h1><xmp>"
Response.Write xml.responseText
Response.Write "</xmp>"

Response.Write "<p><hr><p><h1>The HTML Output</h1>"
Response.Write xml.responseText

__________________
Pa lo que pueda!!!