<%
Fonction GetPage(url)
dim Récupération
Définir la récupération = CreateObject("Microsoft.XMLHTTP")
Avec récupération
.Ouvrez "Obtenir", url, False ', "", ""
.Envoyer
GetPage = BytesToBstr(.ResponseBody)
Terminer par
Définir la récupération = Rien
Fonction de fin
Fonction BytesToBstr(corps)
objstream obscur
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Ouvrir
objstream.Écrire le corps
objstream.Position = 0
objstream.Type = 2
objstream.Charset = "GB2312"
BytesToBstr = objstream.ReadText
objstream.Fermer
définir objstream = rien
Fonction de fin
en cas d'erreur, reprendre ensuite
Url=" http://www.taiang.com.cn/index.asp "
réponse.write "开始更新首页..."
wstr = GetPage(Url)
Set fs=Server.CreateObject("Scripting.FileSystemObject")
'si ce n'est pas MyFile.FolderExists(server.MapPath("/html/")) alors
'MonFichier.CreateFolder(server.MapPath("/html/"))'
'end if
If (fs.FileExists(server.MapPath("./")&"index.htm")) Then
fs.DeleteFile(server.MapPath("./")&"index.htm")
Fin si
Set CrFi=fs.CreateTextFile(server.MapPath("./")&"index.htm")
Crfi.Writeline(wstr)
définir CrFi = rien
définir fs = rien
réponse.write "...<font color=red>更新完成!</font>"
%>