通过在网站的Global.asax的Application_Start方法中
加入定时器 定时调用WebService该WebService的一个方法 负责在后台 向数据库的某个表加入数据
步骤:
1.通过VS 新建一个网站2.加入Global.asax3.加入WebService 编辑 并 加入引用4.对Global.asax进行编辑5.保存 运行 网站 查看效果=============================1.通过VS 新建一个网站2.加入Global.asax
-----------------其默认内容如下:<%@ Application Language="C#" %>
3.加入WebService 编辑 并 加入引用
4.对Global.asax进行如下编辑:
----------------------------void Application_Start(object sender, EventArgs e) { // 在应用程序启动时运行的代码 System.Timers.Timer myTimer = new System.Timers.Timer(60000); myTimer.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent); myTimer.Interval = 60000; myTimer.Enabled = true; }private static void OnTimedEvent(object source, System.Timers.ElapsedEventArgs e) { localhost.WebService a = new localhost.WebService(); string s = a.HelloWorld(); }
5.保存 运行 网站 查看效果
posted on 2014-01-08 11:17 阅读( ...) 评论( ...)