服务器标头检查器

时间:2009-10-30 10:41:58

标签: asp.net

如何连接网站,然后如何在asp.net中控制其标头/ http状态代码?

我尝试了HttpWebRequest / WebRequest / Stream类,但我失败了......

1 个答案:

答案 0 :(得分:1)

您可以使用WebRequest类:

WebRequest wr = WebRequest.Create("http://www.example.com");
wr.Method = WebRequestMethods.Http.Head;
using (HttpWebResponse response = (HttpWebResponse)wr.GetResponse())
{
    Console.WriteLine(response.StatusCode);
}

wr.Method = WebRequestMethods.Http.Head;使WebRequest对象仅检索标题(如果这是您唯一感兴趣的内容,则无需下载整页)。如果您想要整页,请改用wr.Method = WebRequestMethods.Http.Get;