开发者

schedule method in asp.net

开发者 https://www.devze.com 2023-01-11 18:31 出处:网络
How can i send emails automatically every day by asp.net appli开发者_运维技巧cation and c#?Your best bet is to use a Scheduler like Quartz.NET. It will give you the most precise, flexible, and predict

How can i send emails automatically every day by asp.net appli开发者_运维技巧cation and c#?


Your best bet is to use a Scheduler like Quartz.NET. It will give you the most precise, flexible, and predictable results.


ASP.NET application cannot run scheduled code. It works on simple request response pattern so it can run the code only if HTTP request arrives. To do the scheduling you have to write another application. Ugly way is to use console application and schedule it by Windows scheduler. Better approach is to use windows service.

0

精彩评论

暂无评论...
验证码 换一张
取 消