I have a text document from 10 sites links.
I want to parse them.
I do this : I take the first url from the text doc. and go over it from the web browser.
Next parsyu. As soon as the process of parsing the first url is over, I start to parsit the 2 link, and so on.
The question is how can I make it possible to parse 10 url at once, and not one by one. (Authorization on the site) is important.
Upd. I will add a little.
Uri url = new Uri(listBox1.SelectedItem.ToString()); // закидываю с txt в list box мои url, выбираю 1 url webBrowser1.Url = url; // присваиваю браузеру выбранный url Then I save the html code in a separate txt and its pars
HtmlAgilityPack.HtmlDocument d = new HtmlAgilityPack.HtmlDocument(); d.Load(@"HTML.txt");