Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
▼
Friday, June 6, 2014
How to get list of div that contains specific class name in Html Agility?
var DivListContainSpeciicClassName = htmlDoc.DocumentNode.Descendants("div").Where(
d => d.Attributes.Contains("class")
&&
d.Attributes["class"].Value.Contains("cssClassName"));
No comments:
Post a Comment