I am developing a website using VS 2008 (C#). My current mission is to develop a module that should perform the following tasks:
- Every 15 minutes a process need to communicate with the database to find out whether a new user is added to the "User" table in the database through registration
- If it finds an new entry, it should add that entry to an xml file (say
NewUsers18Jan2009.xml
).
In order to achieve this, which of the following one is most appropriate?
- Threads
- Windows Service
- Other
Are there any samples available to demonstrate this?