you can use the XMLHTTP object to request the file and save the reponse to disk.
Sample code:
<%
Dim remoteFileGetter, localFile, objFSO
Set remoteFileGetter = Server.CreateObject("Micro
Set objFSO =Server.CreateObject("Scri
remoteFileGetter.Open "GET", "http://www.yourdomain.com
remoteFileGetter.Send
Set localFile=objFSO.CreateTex
localFile.write remoteFileGetter.responseT
localFile.close
Set localFile=Nothing
Set objFSO=Nothing
Set remoteFileGetter=Nothing
%>
Main Topics
Browse All Topics





by: cristy56Posted on 2007-05-25 at 00:56:01ID: 19155259
If the link provided to you is something like : .csv , you can just click this link and save the file already.
http://www.domain.com/test
Don't necessary to "Save Target as" ....
Can u further clarify your question ?