Fetching data from a web page?
Suppose the given picture (consider the picture as a web page) is a web page. I have saved this web page to my HDD. Now I want to parse/copy data from a specifi开发者_JAVA百科c area from the web page and store it into the database accordingly. Is this possible?
You may want to check out the HTML Agility Pack:
http://htmlagilitypack.codeplex.com/
It allows you to parse HTML like you would XML using a psuedo form of XPath.
Yes it is possible, you can use an Html parser as the Html Agility Pack (htmlagilitypack.codeplex.com/) to do it
HTH
精彩评论