Posts by Brunoobarbos • 51 points
2 posts
-
1
votes1
answer535
viewsQ: Capture results using Htmlagilitypack
I’m using this code to get results using the Html Agility Pack. This is how it is: WebRequest request = WebRequest.Create(texto); WebResponse response = request.GetResponse(); StreamReader reader =…
-
4
votes1
answer1153
viewsQ: Get information from a div in C#
Well, I have a code that reads the page but I need the following: <a href="/t848p15-teste">2</a> The idea of the code is to look for a tag <a> that has this 2 and return the link.…