怎样在客户端判断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,试用下就知道了,第一个访问者。。。