博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《ASP.NET1200例》C#在网页上编写动态时钟
阅读量:5808 次
发布时间:2019-06-18

本文共 1268 字,大约阅读时间需要 4 分钟。

包含Timer类的命名空间有3个

  

 一般用于窗体程序

 

  一般用于控制台程序

using System; using System.Timers;
class Program    {                     public  static void Main()        {            Timer  t = new System.Timers.Timer(1000);                   t.Interval = 2000;           //t.AutoReset = false; //每到指定时间Elapsed事件是触发一次(false),还是一直触发(true)            t.Enabled = true; //是否触发Elapsed事件            t.Elapsed += new ElapsedEventHandler(t_Elapsed);            Console.WriteLine("Press the Enter key to exit the program.");           //从标准输入流读取下一行            Console.ReadLine();            // Keep the timer alive until the end of Main.            GC.KeepAlive(t);                  }        static void t_Elapsed(object sender, ElapsedEventArgs e)        {                        Console.WriteLine("hello world!!");                    }    }

 

 

(using System.Web.UI)一般用于web程序

using System.Web.UI; protected void Page_Load(object sender, EventArgs e)        {            Label1.Text = DateTime.Now.ToString();            Timer1.Interval = 1000;            Timer1.Enabled = true;            Timer1.Tick += new EventHandler
(Timer1_Tick); } void Timer1_Tick(object sender, EventArgs e) { Label1.Text = DateTime.Now.ToString(); }

此时前端代码.aspx

    

 

 

 

转载地址:http://qcubx.baihongyu.com/

你可能感兴趣的文章
springboot 使用maven 打包 报 (请使用 -source 7 或更高版本以启用 diamond 运算符) 错误解决办法...
查看>>
什么是代码现代化?
查看>>
【2011集训贾志鹏】Crash 的数字表格
查看>>
【UR #5】怎样跑得更快
查看>>
多项式幂函数(加强版)
查看>>
springboot 2.0配置集成thymeleaf的坑
查看>>
like的性能问题
查看>>
vue 中使用 async/await 将 axios 异步请求同步化处理
查看>>
BZOJ1078 [SCOI2008]斜堆
查看>>
Digests from CG articales
查看>>
C++day07 学习笔记
查看>>
弹性盒子
查看>>
password
查看>>
JBPM流程部署之部署解析器相关对象扩展
查看>>
python---time模块使用详解
查看>>
Linux下UPnP sample分析
查看>>
react:reducer-creator
查看>>
数据库基础
查看>>
表格排序
查看>>
updatepanel中的GridView中的radiobuttonList怎么设置样式
查看>>