We have a website that runs on ASP.NET. I would like to run a service that checks the database table every XX hours and do an action ( send mail ) if some conditions are not met.
We cannot use
- Windows Service as the hosted server is not a dedicated server. (We just have the control panel)
- SQL Service for sending mail as we are using Access 2003 (mdb) as our database. It resides at App_Data
- IIS is also not available
Its very critical that we need some kind of polling in the server.
We are kind of stuck now. What are the alternatives we have?
its mentioned here
Easy Background Tasks in ASP.NET
here are some snippets from that link