How to track changes in web pages

RK62

Active member
Joined
Dec 29, 2010
Messages
33
Programming Experience
3-5
I need to track any changes in certain web pages (1000+ unique URLs).
How can I add such component to my .NET code? I know there are external free programs doing it that send email whenever there is a change but I need to include that kind of component into my existing .NET application (and I do not want email notification -> instead the program should do some web page scraping and extract the new information whenever there is a change in any of those web pages).

The frequency need to be approx. one check per day per page.

Are they any examples of how to do it?
 
Use website monitoring tools, such as Visualping or ChangeTower, to keep tabs on page changes. These programmes alert you when material is modified. As an alternative, use version control tools, such as Git, to keep track of website code changes and generate a comprehensive history of alterations. Utilise Google Analytics or server logs on a regular basis to track user behaviour and spot patterns on your webpages.
 
Back
Top