asp xmlhttp下载一句话
2018-09-06 12:12
阅读:420
分享一下
在3est活动中学习的godlong的
复制代码 代码如下:
<%
Set xPost = createObject(Microsoft.XMLHTTP)
xPost.Open GET,下载文件的地址
xPost.Send()
Set sGet = createObject(ADODB.Stream)
sGet.Mode = 3
sGet.Type = 1
sGet.Open()
sGet.Write(xPost.responseBody)
sGet.SaveToFile E:\
%>
上一篇:一个asp版XMLDOM操作类
评论
亲,登录后才可以留言!