温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:某大学学生管理系统(毕业设计)源码
当前文件:
StudentsInfo/Global.asax.cs,打开代码结构图
StudentsInfo/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 STGROUP 8
{ 9
/// <summary> 10
/// Global 的摘要说明。 11
/// </summary> 12
public class Global : System.Web.HttpApplication 13
{ 14
public Global() 15
{ 16
InitializeComponent(); 17
} 18
19
protected void Application_Start(Object sender, EventArgs e) 20
{ 21
22
} 23
24
protected void Session_Start(Object sender, EventArgs e) 25
{ 26
27
} 28
29
protected void Application_BeginRequest(Object sender, EventArgs e) 30
{ 31
32
} 33
34
protected void Application_EndRequest(Object sender, EventArgs e) 35
{ 36
37
} 38
39
protected void Application_AuthenticateRequest(Object sender, EventArgs e) 40
{ 41
42
} 43
44
protected void Application_Error(Object sender, EventArgs e) 45
{ 46
47
} 48
49
protected void Session_End(Object sender, EventArgs e) 50
{ 51
52
} 53
54
protected void Application_End(Object sender, EventArgs e) 55
{ 56
57
} 58
59
Web Form Designer generated code 68
} 69
} 70
71





}