I need help getting started on parsing web data using C# .NET.
I would like to create an app that automatically
- goes to a site,
- enters my login crecredentials using form authentication,
- goes to certain pages,
- retrieves and parses data, and then
- saves the data into my DB.
Of course, this is assuming that the site does not expose any web services.
How do I get started? Is there any technical term for such a use case? I’m sure there are other apps that do the same thing.
I suggest looking at http://htmlagilitypack.codeplex.com/. It allows retrieval of web pages and parsing of data. You will will have to write the code to ‘save data into my db’.