zoukankan      html  css  js  c++  java
  • 服务器每隔一段时间执行一次任务

    服务器每天都有自动备份,自动接收之类的事情要做,所以加一个自动执行 是很必须的

    用的是VS2005 所以 添加的新项是 Global.asax,03的是另一个

    <%@ Application Language="C#" %>

    <script runat="server">

        void Application_Start(object sender, EventArgs e)
        {
            // 在应用程序启动时运行的代码
            System.Timers.Timer myTimer = new System.Timers.Timer(30000);//30秒
            myTimer.Elapsed += new System.Timers.ElapsedEventHandler(myTimer_Elapsed);
            myTimer.Enabled = true;
            myTimer.AutoReset = true;
        }


        void myTimer_Elapsed(object source, System.Timers.ElapsedEventArgs e)
        {
             执行的任务     

        }

          //重置下连接池
        void Application_End(object sender, EventArgs e)
        {
            //  在应用程序关闭时运行的代码

            System.Threading.Thread.Sleep(1000);

            string url = "http://localhost:82/111.aspx";//任意地址,为了方便重置连接池
            System.Net.HttpWebRequest myHttpWebRequest = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(url);
            System.Net.HttpWebResponse myHttpWebResponse = (System.Net.HttpWebResponse)myHttpWebRequest.GetResponse();
            System.IO.Stream receiveStream = myHttpWebResponse.GetResponseStream();

        }
           
        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>

    注意的:

    System.IO.Stream 和 Stream  是两个不同的概念,需要 全路径 服务器才能识别

  • 相关阅读:
    Linux守护进程
    sequel pro无法连接mysql服务器
    socket编程之并发回射服务器2
    Unix的I/O模型
    nginx.conf laravel 配置
    phpstudy使用PHP+nginx配置Laravel
    nginx配置文件分开配置
    centos安装composer
    linux下 设置php的环境变量 php: command not found
    laravel 安装
  • 原文地址:https://www.cnblogs.com/hankstar/p/1486273.html
Copyright © 2011-2022 走看看