程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP入門教程 >> asp獲取遠程網頁的指定內容的實現代碼

asp獲取遠程網頁的指定內容的實現代碼

編輯:ASP入門教程
用ASP獲取遠程網頁的指定內容,可以輕易獲取到別人網頁的指定的某些內容,其實也就是ASP小偷程序原理了,需要的朋友可以參考下。 代碼如下:

<%
'用ASP獲取遠程目標網頁指定內容,代碼由廣州網站建設http://www.jb51.Net提供
On Error Resume Next
Server.ScriptTimeOut=9999999
Function getHTTPPage(Path)
t = GetBody(Path)
getHTTPPage=BytesToBstr(t,"GB2312")
End function
Function Newstring(wstr,strng)
Newstring=Instr(lcase(wstr),lcase(strng))
if Newstring<=0 then Newstring=Len(wstr)
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 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

'ASP獲取遠程網頁指定內容開始
Dim wstr,str,url,start,over,dtime
a="開始內容" 'ASP獲取目標網頁內容開始標記
b="結束內容" 'ASP獲取網頁內容結束標記
url="http://sc.jb51.Net/"
wstr=getHTTPPage(url)
start=Newstring(wstr,a)
over=Newstring(wstr,b)
body=mid(wstr,start,over-start)
response.write ""&body&"" '輸出獲取到的網頁內容
'ASP獲取遠程網頁指定內容結束
%>

上面的代碼可以獲取指定網頁的內容,如果是全部獲取就更簡單了
核心代碼:

'ASP獲取遠程網頁指定內容開始
Dim wstr,str,url,start,over,dtime
url="http://sc.jb51.Net/"
wstr=getHTTPPage(url)
body=wstr
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved