MVC 啟動時 執行 我想跑的程式

在 Global.asax 裡頭的 Application_Start() 跑想跑的程式
  public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);

            //在這裡啟動 應用程式
            My_App_run.My_Exec();
        }

//開另一個 CS
 public class My_App_run

    {
        public static void My_Exec()

        {
           //在這裡執行 我要跑的東西
        }
}

留言

熱門文章