程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> ASP.NET(C#) 定時執行一段代碼

ASP.NET(C#) 定時執行一段代碼

編輯:ASP.NET基礎
Global.asax
C# code
復制代碼 代碼如下:
<%@ Application Language="C#" %>
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Threading" %>
<script runat="server">
string LogPath;
Thread thread;
void WriteLog()
{
while (true)
{
StreamWriter sw = new StreamWriter(LogPath, true, Encoding.UTF8);
sw.WriteLine(thread.Name + ":" + DateTime.Now.ToString());
sw.Close();
Thread.CurrentThread.Join(1000 * 60);//阻止1分鐘
}
}
void Application_Start(object sender, EventArgs e)
{
LogPath = HttpContext.Current.Server.MapPath("log.txt");
//在應用程序啟動時運行的代碼
thread = new Thread(new ThreadStart(WriteLog));
thread.Name = "寫登錄日志線程";
thread.Start();
}

void Application_End(object sender, EventArgs e)
{
//在應用程序關閉時運行的代碼

}

void Application_Error(object sender, EventArgs e)
{
//在出現未處理的錯誤時運行的代碼

}

void Session_Start(object sender, EventArgs e)
{
//在新會話啟動時運行的代碼

}

void Session_End(object sender, EventArgs e)
{
//在會話結束時運行的代碼。
// 注意: 只有在 Web.config 文件中的 sessionstate 模式設置為
// InProc 時,才會引發 Session_End 事件。如果會話模式
//設置為 StateServer 或 SQLServer,則不會引發該事件。
}
</script>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved