我正在使用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;
}
}
}
编辑:是的我可以正常访问该网站并进行导航。