Scanning Through a List & Dumping
Alright well, I'm sort of new to VB.NET.
I want to create a scanner that scans websites from lets say google or bing.
It then dumps those websites into a list/textbox. It then scans each website for a directory, and if the site says something like "test page", then it dumps THOSE into another list/textbox.
Where should I start? :ehh:
Re: Scanning Through a List & Dumping
Start with httpwebrequest class. Create a request, obtain a response, get response stream and read html page source from it. Then look through the html source to determine links to other pages.
Then you should repeat the procedure for the pages you've found and if certain conditions are met -- populate another combobox.