md文件用什么软件打开:如何用#include file访问如<!--#include file="HTTP://WWW.444.COM/11.txt"-->这样的效果?

来源:百度文库 编辑:神马品牌网 时间:2024/04/29 09:40:27
要完整代码 QQ469428271
或者:如何用asp远程下载文件到当前目录1.txt,
免费论坛申请(网通):freebbs1.008.net
(电信):freebbs0.008.net

远程下载可以使用小偷程序
也就是用xmlhttp组件得到,然后使用fso写在本地
这段代码简单修改一下你就可以使用了

<%
function getHTTPPage(url)
dim Http
set Http=server.createobject("MSXML2.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,"GB2312")
set http=nothing
if err.number<>0 then err.Clear
end function

Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function

Dim Url,Html
Url="http://www.junlens.com"
Html = getHTTPPage(Url)

dim filename,MDBpath,fso,fout
filename="index.htm"
MDBpath="/"
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set fout = fso.CreateTextFile(server.mappath(""&filename&""))
fout.Write html
fout.close
set fout=nothing
set fso=nothing
if err then
response.Write("生成首页失败")
else
response.Write("生成首页成功")
end if
%>

这样跨域的一般要用XMLHTTP了,楼上的代码应该没问题