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:
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"