用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > Net教程

ASP.NET(C#) 定时执行一段代码

时间:2015-01-29  来源:互联网  作者:佚名
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>
来顶一下
返回首页
返回首页
推荐资讯
asp.net GridView控件中模板列CheckBox全选、反选、取消 asp.net GridView控件中模板列Chec复制代码 代码如下:using System; using System.Data; using
ASP.NET(C#)中操作SQLite数据库实例 ASP.NET(C#)中操作SQLite数据库实例要想在ASP.NET项目中使用SQLite数据库,先需下载一个ADO.NET
相关文章
栏目更新
栏目热门