最近在整理资料的时候,发现以前多的小工具包括网站的pr值以及搜索的数量等模仿于站长工具的功能。下面是一个可以计算出一个网站在google中pr值是多少的代码,希望对大家有用以及能帮助大家!如果有什么问题可以交流!谢谢
//这是验证网址pr值的连接
http://www.google.cn/search?client=navclient-auto&ch=6-1385476800&features=Rank&q=info:www.baidu.com
//这是c# 里面测试的源代码
<%@ WebHandler Language="C#" class="googlepr" %>
using System;
using System.Web;
using System.Net;
public class googlepr : IHttpHandler {
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/html";
string u = (context.Request.Form["u"] + "").Trim(), rank = "0";
if (u != "")
{
WebClient wc = new WebClient();
string pr = wc.DownloadString("http://www.google.cn/search?client=navclient-auto&ch=6-1385476800&features=Rank"
+ "&q=info:" + u);
wc.Dispose();
string[] rs = pr.Split(':');
rank = rs[rs.Length - 1];
}
context.Response.Write(rank);
}
public bool IsReusable
{
get
{
return false;
}
}
}
有兴趣的可以试验一下