<%
Funktion GetPage(URL)
dunkler Abruf
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
Mit Abruf
.Öffnen Sie „Get“, url, False ', „“, „“
.Schicken
GetPage = BytesToBstr(.ResponseBody)
Ende mit
Abruf festlegen = Nichts
Endfunktion
Funktion BytesToBstr(body)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Öffnen
objstream.Text schreiben
objstream.Position = 0
objstream.Type = 2
objstream.Charset = "GB2312"
BytesToBstr = objstream.ReadText
objstream.Schließen
set objstream = nichts
Funktion beenden
Bei Fehler als nächstes fortfahren
Url=" http://www.taiang.com.cn/index.asp "
Response.write „开始更新首页…“
wstr = GetPage(Url)
Set fs=Server.CreateObject("Scripting.FileSystemObject")
'wenn nicht MyFile.FolderExists(server.MapPath("/html/")) dann
'MyFile.CreateFolder(server.MapPath("/html/"))'
'end if
If (fs.FileExists(server.MapPath("./")&"index.htm")) Then
fs.DeleteFile(server.MapPath("./")&"index.htm")
End If
Set CrFi=fs.CreateTextFile(server.MapPath("./")&"index.htm")
Crfi.Writeline(wstr)
setze CrFi=nichts
setze fs=nichts
Response.write „...<font color=red>更新完成!</font>“
%>