15.04.2009, 04:56
|
|
|
Новичок
Регистрация: 28.04.2006
Сообщений: 29
|
RE: Cкачивание файлов с другого сервера к себе на сервер
используй xmlhttp
вот пример
Код 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| ' Url of the webpage we want to retrieve
thisURL = "http://dypso.free.fr/index.php"
' Creation of the xmlHTTP object
Set GetConnection = CreateObject("Microsoft.XMLHTTP")
' Connection to the URL
GetConnection.Open "get", thisURL, False
GetConnection.Send
' ResponsePage now have the response of
' the remote web server
ResponsePage = GetConnection.responseText
' We write out now
' the content of the ResponsePage var
Response.write (ResponsePage)
Set GetConnection = Nothing |
|
|
|