asp.net c# website form actions after 24 hrs -


i have asp.net c# website members complete form stored in sql server. after 24 hrs, send notification specific group of users if form status has not changed. achievable within asp.net?? appreciated

i have done several times , there many ways it. 1 simple way check every x minutes if need send notifications. if so, send them.

for example: every 60 minutes check if there forms have been on same status 24hs. if so, send notification.

if have full control of server, recommend create windows service perform job. asp.net not built long running tasks that's why i'm suggesting create windows service.

one more thing, create log table task every time send notification, add row on table. that's gonna debug issues might have. also, remember mark rows have notified customer avoid sending notification twice. add double check before sending notification.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -