global.asax 文件之我见

我是刚刚出道的菜鸟,由于网站上面涉及到新闻显示,公司要求写一个 自动采集的功能 也就是在每间隔多少时间采集一次新闻信息 使得网站新闻更新  本来说是在window 下设置任务计划程序 可以设置在什么时候做什么操作 可是我不知道怎样将 C#中的.cs 文件如何转成 windows 任务计划程序可执行的文件 所以采用了 多线程的方法 在global文件中用timer 计时器来监视每隔多久程序被执行一次 这有代码 我写的事例 大家参考参考啊 希望对大家有用

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

<script runat="server">

    void Application_Start(object sender, EventArgs e)
    {
        //在应用程序启动时运行的代码
        //Session["state"] = "off";//尝试有误 改用Application 对象则可以 global 文件是用在全局范围内的 session 则是一个客户一个怎么能在global里设置
       
        //定义一个进程
        System.Threading.Thread myThread = new System.Threading.Thread(new System.Threading.ThreadStart(myStart));
        //进程开始
        myThread.Start();
    }
    //进程执行程序
    void myStart()
    {
        //1000ms=1s
        System.Timers.Timer time =new System.Timers.Timer(1000*60*2);
        time.Enabled=true;
        time.Elapsed += new System.Timers.ElapsedEventHandler(time_Elapsed);
        time.AutoReset = true;
        time.Start();       
    }
    //timer  触发事件
    void time_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
    {
        System.DateTime dt = System.DateTime.Now;
        string path = AppDomain.CurrentDomain.BaseDirectory + "/Log/" + "Log_" + dt.ToString("yymmdd") + ".txt";
        if (!System.IO.Directory.Exists(path))
        {
            //System.IO.Directory.CreateDirectory(path);
            System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.CreateNew, System.IO.FileAccess.Write);
            System.IO.StreamWriter sw = new System.IO.StreamWriter(fs);
            sw.WriteLine(DateTime.Now + "ceshi!");
        sw.Flush();
        sw.Close();
        fs.Close();
        }
        else
        {
            System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.Append, System.IO.FileAccess.Write);
            System.IO.StreamWriter sw = new System.IO.StreamWriter(fs);
            sw.WriteLine(DateTime.Now + "ceshi!");
        sw.Flush();
        sw.Close();
        fs.Close();
        }
    }
   
   
   
    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>

你可能感兴趣的:(Web,C#,application,global,dotNet)