auto check the database for some condition and accordingly send reminder mail..Can we achieve this in asp.net web application without opening a single page even not opening the Login Page..
This auto check must occur every day at 12:00 am.
Could anyone help me in this scenario?
Loading
Dinesh VijayakumarPosted Jan 8, 2015, 2:24 AM
The basic thing to keep in mind, when we need to achieve schedule based application efficiently we must go with windowservice application.
All also for .net we have open source DLL called Quartz.net http://www.quartz-scheduler.net/
Read a http://www.quartz-scheduler.net/documentation/quartz-2.x/tutorial/simpletriggers.html
we can achieve any kind of scheduling task with quartz.dll.
So try it.
Ping me if anything needed regarding quartz.
Thanks
Dinesh