如何从网页获取Window.name属性

时间:2017-10-28 23:14:38

标签: c# html dom

我需要一个网页来获取Window.name属性。 谷歌Chrome控制台" Window.name"例如,返回" uwt2c9xnw_64"

我尝试了几种不同的方式,但我找不到获得财产的方法。

WebClient Client = new WebClient();
string DownloadString = Client.DownloadString(URL);
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(DownloadString);

无法在HtmlDocument中找到提供此属性的任何内容。

HttpWebRequest request = WebRequest.Create(URL) as HttpWebRequest;
HttpWebResponse response;
response = request.GetResponse() as HttpWebResponse;

无法在响应中找到提供此属性的任何内容。

它必须以某种方式设置,但我找不到C#方法来获取它。

0 个答案:

没有答案