用ASP獲取遠程
網頁的指定內容,可以輕易獲取到別人網頁的指定的某些內容,其實也就是ASP小偷程序原理了,需要的朋友可以參考下。
代碼如下:
<%
'用ASP獲取遠程目標網頁指定內容,代碼由廣州
網站建設http://www.jb51
.Net提供
On Error Resume Next
Server.Scr
iptTimeOut=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 ob
JStream
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