Web scraping through WebBrowser (.Net WinForm Control)
In this post, I am going to explain how it is easy to extract and change the the web-page content through Web-Browser control. The Web-Browser is a Microsoft windows form control and easy to use. This post will explain you how you can use this control for your need. The Web-Browser control is used to display the web-page in your application. The Web-Browser class is a powerful class that give you leverage to manipulate the html code, interact with JavaScript, automate the web scrapping and many more. You can find more about the Web-Browser from MSDN library. The following steps will guide you how to use the Web-Browser. 1. The first thing that you should do is to create a windows application project. 2. Add a Web-Browser and two button controls on web form. 3. Set the “Url” property of the control or you can do this by writing...