asp中利用xmlhttp抓取網(wǎng)頁內(nèi)容的代碼_ASP教程
推薦:asp xmlhttp下載一句話asp中通過xmlhttp下載一句話代碼,需要的朋友可以參考下
需要分件html源代碼此例中的被抓取的html源代碼如下
<p align=left>2004年8月24日星期二;白天:晴有時多云南風(fēng)3—4級;夜間:晴南風(fēng)3—4級;氣溫:最高29℃最低19℃ </p>
而程序中是從
以2004年8月24日為關(guān)鍵字搜索,直到</p>結(jié)速
而抓取的內(nèi)容就變成了"2004年8月24日星期二;白天:晴有時多云南風(fēng)3—4級;夜間:晴南風(fēng)3—4級;氣溫:最高29℃最低19℃ "
干干凈凈的了。記錄一下。
復(fù)制代碼 代碼如下:www.wf0088.com
<%
On Error Resume Next
Server.ScriptTimeOut=9999999
Function getHTTPPage(Path)
t = GetBody(Path)
getHTTPPage=BytesToBstr(t,"GB2312")
End function
Function GetBody(url)
on error resume next
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", url, False, "", ""
.Send
GetBody = .ResponseBody
End With
Set Retrieval = Nothing
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
Function Newstring(wstr,strng)
Newstring=Instr(lcase(wstr),lcase(strng))
if Newstring<=0 then Newstring=Len(wstr)
End Function
%>
<html>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 MARGINHEIGHT=0 MARGINWIDTH=0>
<!-- 開始 -->
<%
Dim wstr,str,url,start,over,dtime
dtime=Year(Date)&"年"&Month(Date)&"月"&Day(Date)&"日"
url="http://www.wf0088.com/"
wstr=getHTTPPage(url)
start=Newstring(wstr,dtime)
over=Newstring(wstr,"</p>")
body=mid(wstr,start,over-start)
response.write "<MARQUEE onmouseover=this.stop(); onmouseout=this.start();>"&body&"</marquee>"
%>
<!-- 結(jié)束 -->
</body></html>
分享:asp中將有雙引號標(biāo)題入庫的方法asp中將有雙引號標(biāo)題入庫的方法,需要的朋友可以參考下
相關(guān)ASP教程:
- asp FSO 讀寫文件本文件實現(xiàn)代碼
- asp中isNull、isEmpty和空字符串的區(qū)別
- asp獲取用戶真實IP地址的方法
- asp連接sqlserver數(shù)據(jù)庫實現(xiàn)代碼
- asp中正則表達(dá)式過濾html代碼函數(shù)
- asp中g(shù)et post提交表單區(qū)別
- 網(wǎng)頁模板:ASP內(nèi)建對象Request
- xmlhttp的open方法使用詳解
- ASP的常用的自定義函數(shù)大全
- asp中用for循環(huán)的一個小技巧
- eWebEditor v3.8 列目錄
- ASP無組件分頁實現(xiàn)思路及代碼
- 相關(guān)鏈接:
- 教程說明:
ASP教程-asp中利用xmlhttp抓取網(wǎng)頁內(nèi)容的代碼。