温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:三层入门之留言板
当前文件:
JMWQZM6NWKG61/Web/Global.asax.cs,打开代码结构图
JMWQZM6NWKG61/Web/Global.asax.cs,打开代码结构图1using System; 2
using System.Collections; 3
using System.ComponentModel; 4
using System.Web; 5
using System.Web.SessionState; 6
7
namespace MessageBoard7.Web 8
{ 9
/// <summary> 10
/// Global 的摘要说明。 11
/// </summary> 12
public class Global : System.Web.HttpApplication 13
{ 14
/// <summary> 15
/// 必需的设计器变量。 16
/// </summary> 17
private System.ComponentModel.IContainer components = null; 18
19
public Global() 20
{ 21
InitializeComponent(); 22
} 23
24
protected void Application_Start(Object sender, EventArgs e) 25
{ 26
27
} 28
29
protected void Session_Start(Object sender, EventArgs e) 30
{ 31
32
} 33
34
protected void Application_BeginRequest(Object sender, EventArgs e) 35
{ 36
37
} 38
39
protected void Application_EndRequest(Object sender, EventArgs e) 40
{ 41
42
} 43
44
protected void Application_AuthenticateRequest(Object sender, EventArgs e) 45
{ 46
47
} 48
49
protected void Application_Error(Object sender, EventArgs e) 50
{ 51
52
} 53
54
protected void Session_End(Object sender, EventArgs e) 55
{ 56
57
} 58
59
protected void Application_End(Object sender, EventArgs e) 60
{ 61
62
} 63
64
Web 窗体设计器生成的代码 74
} 75
} 76
77





}