前端之家收集整理的这篇文章主要介绍了
一段Get取远程序图片并保存到本地的代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<%
Function GetWebData(byval strUrl)
dim curlpath
dim Retrieval
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get",strUrl,False,"",""
.Send
GetWebData =.ResponseBody
End With
Set Retrieval = Nothing
End Function
sub SaveImg(FileName,Data)
set ads=server.CreateObject("Adodb.Stream")
with ads
.Type=1
.Open
.Write Data
.SaveToFile server.MapPath(FileName),2
.Cancel()
.Close()
end with
set ads=nothing
end sub
dim imgurl
dim aryFileName
imgurl="http://bbs.dvbbs.net/images/
logo.GIF" '
图片远程地址。
aryFileName=split(imgUrl,"/")
call SaveImg(aryFileName(ubound(aryFileName)),GetWebData(imgurl))
%>
本程序在 win2K server/IIS5.0/IE6 下测试成功。
54NB聯盟(原wc公司)荣誉出品(2003-09-1)
原文链接:/asp/567818.html