今天創(chuàng)新互聯(lián)網(wǎng)站建設(shè)來了一個我客戶,在聊天的時候,他就好奇的問了小編一句,PR的查詢程序是怎么搞的啊。小編想了一下說:那一般都是偷國外一個網(wǎng)站提供的PR查詢頁面的數(shù)據(jù)庫,改裝成自己的,不過速度會比較慢。比較高級的方法是直接從toolbar.google.com那獲取PR信息,但是比較復(fù)雜。
事后,小編在網(wǎng)上搜索一下了,發(fā)現(xiàn)有一篇文章,是截取so.5eo.com這個網(wǎng)站的PR查詢數(shù)據(jù),作者估計就是其站長,還不錯,分享給大家,如果你在網(wǎng)站制作上遇到什么難題,歡迎咨詢成都創(chuàng)新互聯(lián)網(wǎng)站建設(shè),我們專業(yè)從事網(wǎng)站建設(shè),網(wǎng)頁制作,域名注冊,虛擬主機,企業(yè)郵局,網(wǎng)站備案和服務(wù)器租用等項目,歡迎您的咨詢了解。您也可以登錄我們的論壇(http://bbs.cdxwcx.com)來和更多的網(wǎng)站愛好者進(jìn)行交流!
好啦,話不多說,轉(zhuǎn)貼如下,:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Google PR值查詢程序</title>
</head>
<body><h3>輸入網(wǎng)址,查詢Google PageRank值</h3>
<form name="form1" method="post" action="?act=ok">
<p>輸入網(wǎng)址
<input type="text" name="domain">
<input type="submit" name="Submit" value="提交">
</p>
</form>
<%
if trim(Request.QueryString("act"))="ok" then
domain=trim(Request.Form("domain"))
if domain<>"" then
Response.Write("<b>"&domain&"</b> 的Google PageRank值為<font color=red>"&getPr(domain)&"</font>")
end if
end if
Function getPr(domain)
getContent=GetURL("http://so.5eo.com/pr/rank.asp?domain="&domain)
getPrLine=RegExpText(getContent,"在Google PageRank滿分10分評價中獲得.*(d).*分")
getPr=RegExpText(getPrLine,"sds")
End Function
Function bstr(vIn)
Dim strReturn,i,ThisCharCode,innerCode,Hight8,Low8,NextCharCode
strReturn = ""
For i = 1 To LenB(vIn)
ThisCharCode = AscB(MidB(vIn,i,1))
If ThisCharCode < &H80 Then
strReturn = strReturn & Chr(ThisCharCode)
Else
NextCharCode = AscB(MidB(vIn,i+1,1))
strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
i = i + 1
End If
Next
bstr = strReturn
End Function
Function GetURL(url)
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "GET", url, false
.setRequestHeader "Content-Type","application/x-www-form-urlencoded"
.Send
GetURL = .ResponseBody
End With
Set Retrieval = Nothing
GetURL=bstr(GetURL)
End Function
Function RegExpText(strng,regStr)
'Dim regEx, Match, Matches ' 建立變量。
Set regEx = New RegExp ' 建立正則表達(dá)式。
regEx.Pattern = regStr ' 設(shè)置模式。
regEx.IgnoreCase = True ' 設(shè)置是否區(qū)分字符大小寫。
regEx.Global = True ' 設(shè)置全局可用性。
Set Matches = regEx.Execute(strng) ' 執(zhí)行搜索。
For Each Match in Matches ' 遍歷匹配集合。
RetStr = RetStr & Match.Value'&"|||"
Next
RegExpText = RetStr
set regEx=nothing
End Function
%>
</body>
</html>