Skip to content Skip to sidebar Skip to footer

HTML Parsing With VB.Net

Does anybody know of a good way of parsing HTML in VB.Net. I found a solution somewhere on the net using MSHTML. I tried using it and to get it to work I had to add some code to my

Solution 1:

You can use HTML Agility Pack


Solution 2:

use

Html Agility Pack. Its best one out there. It can be done without browser.

http://htmlagilitypack.codeplex.com/


Solution 3:

In WinForm App, you can create an object of WebBrowser and let it load page, then you can find any tag name and data by dom node.


Post a Comment for "HTML Parsing With VB.Net"