user298382
user298382

Reputation: 11

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 could be managed? i am stuck how to fetch data and store it in database

Upvotes: 1

Views: 217

Answers (3)

Michael
Michael

Reputation: 1

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

Upvotes: 0

pms1969
pms1969

Reputation: 3734

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.

Upvotes: 0

Nifle
Nifle

Reputation: 11933

I suggest you start reading, this looks like a good place to start

Screen Scraping Tutorial using C# .NET

Upvotes: 1

Related Questions