我想从网上获取一些信息,HtmlAgilityPack
在我使用应用程序从该页面获取数据之前,应用程序是正常的,错误的编号是403
,我的代码如下:
string wikipageurl = geturl.Text;
WebClient wc1 = new WebClient();
Stream stream1 = wc1.OpenRead(wikipageurl);
StreamReader sr1 = new StreamReader(stream1, Encoding.UTF8);
showhtml.Text = sr1.ReadToEnd();
我使用 showhtml 文本框向我展示应用程序获得的信息。