Visual Studio 2005发布网站后,Global.asax不见了??而且里面的事件也不能执行了.这是怎么回事?
在Visual 2005中是正常的,发布以后就不行了.
void Application_Start(object sender, EventArgs e)
{
log4net.Config.XmlConfigurator.Configure();
// 在应用程序启动时运行的代码
log4net.ILog log = log4net.LogManager.GetLogger("File");
log.Debug("服务器启动成功");
}
这个事件不会执行.日志记录没有问题,在其它地方都是正常的.
编译后放到bin目录了。