html parsing in c#
How can i parse values from the scoreboard of http://www.cricinfo.com/nzvaus2010/engine/current/match/423789.html
But how it开发者_如何学Python could be managed? i am stuck how to fetch data and store it in database
I suggest you start reading, this looks like a good place to start
Screen Scraping Tutorial using C# .NET
It won't be easy, looking at the source of the page, it's all dynamic. You're going to have to pull the javascript apart to figure out where it's getting it's data from and use that. Conveniently, it's written in jquery.
Not sure how much data you are trying to get but there is an rss feed on the site http://www.cricinfo.com/rss/livescores.xml
精彩评论