I need to write a c++ program that gets data from a web page (i have the url to that). Basically the web page contains a huge table spread over multiple pages (though next buttons).
I need to get this entire table and then take each row and parse it (table has around 10 columns). Each of this has to be put into a csv file in a similar data format after some minor processing.
Can anybody suggest the best way to do this. I need to do this in c++ am wondering what libs i shd use. Needs to be done in windows but i dont mind using platform independent / dependent stuff.
Thanks in advance.