Se il file è formato txt o htm puoi leggerlo così:
codice:
<%
StrURL="http://www.website.it/"
' esempio StrURL="http://www.website.it/file.txt"
' StrURL="http://www.website.it/file.txt"
if mid(StrURL,1,3)="www" then StrURL="http://"&StrURL
Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
' in caso di problemi, usare Microsoft.XMLHTTP
objXMLHTTP.Open "GET", StrURL, false
' Richiama il file
objXMLHTTP.Send
contenuto = CStr(objXMLHTTP.ResponseText)
response.write contenuto
Set objxml = Nothing
%>