摘要:
public class Global : System.Web.HttpApplication { private Timer timer = null; void Application_Start ( object sender, EventArgs e ) { // 在应用程序启动时运行的代码 Timer timer = new Timer (1000); timer.Enabled = true; timer.Elapsed += new E... 阅读全文