主頁(yè) > 知識(shí)庫(kù) > XMLHttp ASP遠(yuǎn)程獲取網(wǎng)頁(yè)內(nèi)容代碼

XMLHttp ASP遠(yuǎn)程獲取網(wǎng)頁(yè)內(nèi)容代碼

熱門(mén)標(biāo)簽:地圖標(biāo)注服務(wù)哪家好 外呼系統(tǒng)還用卡么 武漢營(yíng)銷(xiāo)電話機(jī)器人軟件 騰訊地圖標(biāo)注商戶關(guān)閉 徐州人工智能電銷(xiāo)機(jī)器人好用嗎 長(zhǎng)沙防封電銷(xiāo)卡品牌 西寧公司外呼系統(tǒng)平臺(tái) 智能電銷(xiāo)機(jī)器人適用于哪些行業(yè) 地圖標(biāo)注宅基地

復(fù)制代碼 代碼如下:

url="http://www.csdn.net/"
wstr=getHTTPPage(url)
start=Newstring(wstr,"資源精選!-- 下載 -->")
over=Newstring(wstr,"div class=""friendlink"">")
body=mid(wstr,200,500)

response.write body

Function getHTTPPage(url)
dim objXML
set objXML=createobject("MSXML2.XMLHTTP")'定義
objXML.open "GET",url,false'打開(kāi)
objXML.send()'發(fā)送
If objXML.readystate>4 then '判斷文檔是否已經(jīng)解析完,以做客戶端接受返回消息
exit function
End If
getHTTPPage=bBytesToBstr(objXML.responseBody)'返回信息,同時(shí)用函數(shù)定義編碼
set objXML=nothing'關(guān)閉
if err.number>0 then err.Clear
End Function

Function Newstring(wstr,strng)
Newstring=Instr(lcase(wstr),lcase(strng))
if Newstring=0 then Newstring=Len(wstr)
End Function

Function bBytesToBstr(body)
dim objstream
set objstream = CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = "gb2312"
'轉(zhuǎn)換原來(lái)默認(rèn)的UTF-8編碼轉(zhuǎn)換成GB2312編碼,否則直接用XMLHTTP調(diào)用有中文字符的網(wǎng)頁(yè)得到的將是亂碼
bBytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
end Function

Function BytesToBstr(body)
dim objstream
set objstream = CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = "utf-8"
'轉(zhuǎn)換原來(lái)默認(rèn)的UTF-8編碼轉(zhuǎn)換成GB2312編碼,否則直接用XMLHTTP調(diào)用有中文字符的網(wǎng)頁(yè)得到的將是亂碼
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
end Function

標(biāo)簽:雅安 巴彥淖爾 荊門(mén) 普洱 通化 運(yùn)城 通遼 鷹潭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《XMLHttp ASP遠(yuǎn)程獲取網(wǎng)頁(yè)內(nèi)容代碼》,本文關(guān)鍵詞  XMLHttp,ASP,遠(yuǎn)程,獲取,網(wǎng)頁(yè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《XMLHttp ASP遠(yuǎn)程獲取網(wǎng)頁(yè)內(nèi)容代碼》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于XMLHttp ASP遠(yuǎn)程獲取網(wǎng)頁(yè)內(nèi)容代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章