how to schedule a task in MVC4 C#?

前端 未结 7 1355
借酒劲吻你
借酒劲吻你 2020-12-09 16:22

I wanna create a notification system on my website?(something like stack-overflow)
How can we schedule a task for mailing the notification for users on each 24 hours?

7条回答
  •  温柔的废话
    2020-12-09 17:16

    maybe you wanna use a scheduled task. Doing this in a MVC is a bad idea (mixing responsabilities) and building a windows service looks like an overkill to me (because is something doesn't need to run all the time).

提交回复
热议问题