有没有办法解决这个错误 - “远程服务器返回错误:(521)。”

时间:2018-03-20 10:00:19

标签: c# web-scraping

我正在使用c#而我正试图从中国政府网站上搜集信息,而我似乎无法得到任何东西。相关网站是“http://www.ajxxgk.jcy.gov.cn/html/zdajxx/index.html”。

然而,当我尝试拉取页面的HTML时,我不断收到此错误。有办法吗?

class Program
{
    static void Main(string[] args)
    {
        var program = new Program();
        var data = program.htmlReturn("http://www.ajxxgk.jcy.gov.cn/html/zdajxx/4.html");
    }

    public string htmlReturn(string link)
    {
        using (WebClient client = new WebClient())
        {
            string htmlCode = client.DownloadString(link);
            return htmlCode;
        }
    }
}

编辑:是的我可以正常访问该网站并进行导航。

0 个答案:

没有答案