Asp.Net(C#)自动执行计划任务的程序实例分析分享(2)

好了,在VS.NET里建立一个C#的Web应用程序工程,建立TaskScheduler.cs类,并修改相应的Global.asax.cs文件。为了能看到效果,我们再建立一个表单WebForm1.aspx,定时刷新来检查我们所记录的数据:

复制代码 代码如下:


<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false"
Inherits="CSTest.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>在Web应用程序中执行计划任务的例子</title>
<meta http-equiv="refresh" content="10">
<meta Content="Microsoft Visual Studio 7.0">
<meta Content="C#">
<meta content="JavaScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form method="post" runat="server">
<iframe src="https://www.jb51.net/SchedulerJob/SchedulerJob.txt"></iframe>
</form>
</body>
</HTML>

对工程进行编译并运行,就可以看到结果了,结果如下:

计划任务测试开始:
2003-13-10 11:08:15
2003-13-10 11:08:18
2003-13-10 11:08:21
2003-13-10 11:08:24
2003-13-10 11:08:27
2003-13-10 11:08:30 

需要说明的是,以上只是在Web应用程序中执行计划任务的简单例子,对于多个任务来说,需要在不同的线程内进行工作,对计划的安排也是很简单的,实际还需要站点堵塞,当机的情况。另外这里也没有进行错误的处理等工作,相信大家会写出更加完美的代码的。

点击下载源码:(jb51.net).zip

资源回收,当web没有人访问的时候,定时器会回收停掉
不知道在 Application_End 时自动访问一次有用么,我这前测试了几天这个方法都可以行。

复制代码 代码如下:


void Application_End(object sender, EventArgs e)
{
///在应用程序关闭时运行的代码
webSocket.Stop();
Thread.Sleep(15000);
try
{
string url = "http://127.0.0.1/404.aspx?mater=" + DateTime.Now.Ticks;
HttpWebRequest httpWebRequest = (HttpWebRequest)HttpWebRequest.Create(url);
using (HttpWebResponse response = (HttpWebResponse)httpWebRequest.GetResponse())
{
Stream resStream = response.GetResponseStream();
}
}
catch (Exception ex)
{
//异常时,等15s,再访问一次。
Thread.Sleep(15000);
string url = "http://127.0.0.1/404.aspx?mater=" + DateTime.Now.Ticks;
HttpWebRequest httpWebRequest = (HttpWebRequest)HttpWebRequest.Create(url);
using (HttpWebResponse response = (HttpWebResponse)httpWebRequest.GetResponse())
{
Stream resStream = response.GetResponseStream();
}

Hangjing.AppLog.AppLog.Error("Application_End:" + ex);
}
}

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjzpjy.html