I have the same issue since I would like to loop over some url.
I havre tried the following code but I have the same data on each loop
I havre tried the following code but I have the same data on each loop
for (int i = 1; i <= Convert.ToInt32(NbrePage); i++)
{
url = urlBase + i.ToString();
doc = null;
doc = new HtmlAgilityPack.HtmlDocument();
HtmlWeb web = new HtmlWeb();
web.UsingCache = false;
doc = web.Load(url) ;