首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎样在客户端判断Application_Start是否执行,该如何解决

2012-01-19 
怎样在客户端判断Application_Start是否执行protected void Application_Start(object sender, EventArgs

怎样在客户端判断Application_Start是否执行
protected void Application_Start(object sender, EventArgs e)
  {
  time1.Elapsed += new ElapsedEventHandler(time1_Elapsed);
  time1.Interval = 1;;
  time1.Enabled = true;
  }
  void time1_Elapsed(object sender, ElapsedEventArgs e)
  {
  throw new Exception("123");
  }
代码如下在Global页中 用VS启动测试得时候能执行,但在iE中输入地址得时候却不执行,怎么在iE中输入地址时能执行啊!

[解决办法]
部署好了,第一个访问的就会有的。。。
[解决办法]
重新启动iis,试用下就知道了,第一个访问者。。。

热点排行