Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument(); htmlDoc.LoadHtml(html); var scriptList = htmlDoc.DocumentNode.Descendants() .Where(n => n.Name == "script" );
No comments:
Post a Comment