I have 100 pages on my site, but I want to download only part of the page, not the entire content of the page.
I want to load only one cell of each page, the file size is 10 KB. For this, I use WebClient and htmlagilitypack.
WebClient Client = new WebClient(); var result = Encoding.GetEncoding("UTF-8").GetString(Client.DownloadData(URL));

c #
osman rahimi
source share