|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP一般认为只能运行在IIS上,正如前面所提到的,这并不是十分正确,事实上,ASP也能运行在Apache上。ApacheASP可在任意Apache服务器上运行有限的ASP功能,所需做的,只需打开mod_perl。能够用远程猎取XML数据,或HTML文件数据.一般还使用于经由过程HTTP猎取index.asp静态主页来天生静态首页等用处...远程抓取收罗最经常使用的一个函数,本人触类旁通吧
能够用远程猎取XML数据,或HTML文件数据.一般还使用于经由过程HTTP猎取index.asp静态主页来天生静态首页等用处...
阿里西西www.alixixi.com另有更多教程,接待检索进修.
<%
functiongethttppage(url)
dimadxmlhttp
setadxmlhttp=server.createobject("microsoft.xmlhttp")
adxmlhttp.open"get",url,false
adxmlhttp.send()
ifadxmlhttp.readystate4thenexitfunction
gethttppage=bytes2bstr(adxmlhttp.responsebody)
setadxmlhttp=nothing
Endfunction
functionbytes2bstr(vin)
dimbytesstream,stringreturn
setbytesstream=server.CreateObject("adodb.stream")
bytesstream.type=2
bytesstream.open
bytesstream.writeTextvin
bytesstream.position=0
bytesstream.charset="gb2312"
bytesstream.position=2
stringreturn=bytesstream.readtext
bytesstream.close
setbytesstream=nothing
bytes2bstr=stringreturn
endfunction
%>
大家可以自己去看一看.可以说看得想呕吐.以前有次下了个动网来看.里面连基本内置函数的保护措施(函数没防御性)都没有.难怪经常补这个补那个了.可能现在.NET版会好点吧 |
|