Hello everybody, This is my question. Which is the best way to extract certain information from an HTML page. What I currently do is the following:
Download the page using WebClient
Convert the received data to string using UTF8Encoding
Convert the string to XML
Using Xml related classes from the .NET Framework extract the desired data
This is what I currently do in summarized form. Anyone aware of another method? Something that can be faster or easier?
Best Regards, Kiril
PS: I have heard about a testing framework called Watin
that allows you to do something similar, but haven't researched it much