<%
'先下載遠程圖片
url="
http://www.baidu.com/img/logo.gif" '遠程圖片地址
savepath="e:\www\www9551cn" '保存路徑
'給文件重命名
randomize
ranNum=int(999*rnd)
filename=year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum
'文件重命名結束
set xmlhttp=server.createobject("Microsoft.XMLHTTP")
xmlhttp.open "get",url,false
xmlhttp.send
img = xmlhttp.ResponseBody
text=xmlhttp.ResponseText
set xmlhttp=nothing
set objAdostream=server.createobject("ADODB.Stream")
objAdostream.Open()
objAdostream.type=1
objAdostream.Write(img)
objAdostream.SaveToFile(savepath&filename&".jpg")
objAdostream.SetEOS
set objAdostream=nothing
'文件下載結束
%>
posted on 2007-04-05 13:12
kelly 閱讀(1495)
評論(3) 編輯 收藏 所屬分類:
others