<%
url="http://www..........it/public/prova2.txt"
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", url, False
xml.Send
file=xml.responseText
i = 1
while not file.atEndOfStream = FALSE
if i > 1 then
tempLine = file.readLine
tempLine = replace(tempLine,"""","")
elTempLine = split(tempLine,",")
conn.execute("INSERT INTO prova (campo1, campo2, campo3, campo4, campo5) VALUES('" & eltempline(0) & "', '" & eltempline(1) & "', '" & eltempline(2) & "', '" & eltempline(3) & "', '" & eltempline(4) & "')")
end if
i = i + 1
wend
set file = nothing
set fso = nothing
set xml = nothing
%>