温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:51aspx修正版简单三层留言板源码
当前文件:
LeaveMessageMVC/Global.asax.cs,打开代码结构图
LeaveMessageMVC/Global.asax.cs,打开代码结构图1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Collections; 5
using System.Web; 6
using System.Web.Security; 7
using System.Web.SessionState; 8
using LeaveMessageMVC.MVC.DataBaseControlLayer; 9
namespace LeaveMessageMVC 10
{ 11
public class Global : System.Web.HttpApplication 12
{ 13
14
protected void Application_Start(object sender, EventArgs e) 15
{ 16
//因为以下赋值只发生在“应用程序启动时”,所以如果人工删除DB内的数据,可能会造成“楼数”不准 17
Application["TableCount"] = DBControl.TableCount(); 18
} 19
20
protected void Application_End(object sender, EventArgs e) 21
{ 22
23
} 24
} 25
}





}
}