记时器在ASP.NET中的应用
2005-11-13 17:02:47 来源:WEB开发网核心提示: PRotected void application_Start(Object sender, EventArgs e) { init(); System.Timers.Timer myTimer=new System.Timers.Timer(3000); //关联事件 myTimer.Elapsed +=
PRotected void application_Start(Object sender, EventArgs e)
{
init();
System.Timers.Timer myTimer=new System.Timers.Timer(3000);
//关联事件
myTimer.Elapsed += new System.Timers.ElapsedEventHandler(myTimer_Elapsed);
myTimer.AutoReset = true ;
myTimer.Enabled = true ;
}
private void myTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
//获取当前时间
init();
}
private void init()
{
Application.Lock();
Application["TIMEDEMO"]= DateTime.Now.ToString();
Application.UnLock();
}
- ››asp.net页面弄成伪静态页面
- ››Asp.net 中将汉字转换成拼音的方法
- ››ASP.NET及JS中的cookie基本用法
- ››ASP.NET获取MS SQL Server安装实例
- ››asp.net实现调用百度pai 在线翻译英文转中文
- ››ASP.NET页面选项进行提示判断
- ››Asp.net定时执行程序
- ››ASP.NET中利用DataList实现图片无缝滚动
- ››ASP.NET验证控件RequiredFieldValidator
- ››ASP.NET中使用System.Net.Mail发邮件
- ››ASP.NET中获取用户控件中控件的ID
- ››ASP.NET中FileBytes写成文件并存档
更多精彩
赞助商链接