Webタイミング実行メソッド-Webページ取得

3128 ワード

この機能を実現するために使用するのはSystemである.Timers.Timer
 
 
タイミングの方法をGlobalに追加する.ascx.cs中
public class Global : System.Web.HttpApplication

    {

        protected void Application_Start(object sender, EventArgs e)

        {



                // 

                System.Timers.Timer myTimer = new System.Timers.Timer(60000); //

                myTimer.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent); // ,OnTimedEvent 

                myTimer.Interval = AutoUpdateGoldPriceTime;

                myTimer.Enabled = true;

            }

        }



        protected void Session_Start(object sender, EventArgs e)

        {

        }



        protected void Application_BeginRequest(object sender, EventArgs e)

        {



        }



        protected void Application_AuthenticateRequest(object sender, EventArgs e)

        {



        }



        protected void Application_Error(object sender, EventArgs e)

        {



        }



        protected void Session_End(object sender, EventArgs e)

        {



        }



        protected void Application_End(object sender, EventArgs e)

        {



        }



        protected  void OnTimedEvent(object source, System.Timers.ElapsedEventArgs e)

        {

        // 

        }