salve a tutti,

leggo una pagina da un sito esterno con:

Function GetUrl(Url)
Dim Http
Set Http = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
Http.open "GET",Url,False
Http.setRequestHeader "Content-Type", "text/xml; charset=utf-8"
Http.Send()
GetUrl = Http.ResponseText
Set Http=Nothing
End Function

Stampando GetUrl("miositoesterno.it/pagina.asp") ...i caratteri in questione vengono sostiuiti con ? ...quindi non posso nemmeno operare con i replace ...

ho cercato l'argomento su questo ed altri forum, ma non ho capito realmente qual'è il problema !