引言
上次分享了用Windows服务实现任务。对此我想说,一般用Windows是来处理大数据的。一般的后台需要自动执行的小任务有一种更简便的实现方法。比如我在项目中用到了后台自动从数据库扫描看有无联系人然后发送邮件。直接添加一个全局应用程序类便可以。
具体实现方法
添加
在工程中新建一个全局应用程序类。
Global.asax代码框架
<span style="font-size:18px;">using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
namespace ITSM
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
}
protected void Session_Start(object sender, EventArgs e)
{
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}
protected void Application_Error(object sender, EventArgs e)
{
}
protected void Session_End(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
}
}</span>
用到的方法Application_start
用到一个方法Application_start足矣。
方法中代码:
AddCount方法代码:
更多
其中更多实现内容不再展示。目的只是让大家知道怎么实现后台自动执行任务。
小结
做项目的时候也是有想法,不知道该怎么实现。多上网查查,90%的问题都不在话下。