如何连接网站,然后如何在asp.net中控制其标头/ http状态代码?
我尝试了HttpWebRequest / WebRequest / Stream类,但我失败了......
答案 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;
。