Data Scrapping Suggestion

You can’t directly skip the rows while data scraping.
Instead you fetch all pages and take only the required number of rows from the scraped data table.

newdt = myDataTable.AsEnumerable().Skip(skipRows).Take(50).CopyToDataTable

Skip - Will skip the unwanted rows
Take - Will take the next 50 rows

Regards,
Karthik Byggari

7 Likes