Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
A quick question ....

I need to write services in C#. The service should have specific timer which should check in DB and retrieves the date.
For example... In application, the user gives "Remind me after 2 days" In background, after 2 days, I should load the data where the user marked remind me and should display the marked data 1st.

what would be the best method to solve this ???
Posted

1 solution

Step 1: From the web app you need to store the user selected value in DB (2 days).

Step 2: You can create a Windows Service, which will keep on checking the DB, and fires a particular event (when that particular date comes), and may do an insert or update.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900