How can i select all html tags using Html Agility Pack and put it in a List so i can see all the available tags in a web page.
Thanks,
jepe
HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm");
foreach(HtmlNode node in doc.DocumentNode.SelectNodes("//*"){
///..... do something with node
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With