温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:asp.net漂亮弹出对话框控件源码及示例
当前文件:
U3PILEHVJGM55/VbNet/Global.asax.vb,打开代码结构图
U3PILEHVJGM55/VbNet/Global.asax.vb,打开代码结构图1Imports System.Web 2
Imports System.Web.SessionState 3
4
Public Class Global 5
Inherits System.Web.HttpApplication 6
7
Component Designer Generated Code 30
31
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) 32
' Fires when the application is started 33
End Sub 34
35
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) 36
' Fires when the session is started 37
End Sub 38
39
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs) 40
' Fires at the beginning of each request 41
End Sub 42
43
Sub Application_AuthenticateRequest(ByVal sender As Object, ByVal e As EventArgs) 44
' Fires upon attempting to authenticate the use 45
End Sub 46
47
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) 48
' Fires when an error occurs 49
End Sub 50
51
Sub Session_End(ByVal sender As Object, ByVal e As EventArgs) 52
' Fires when the session ends 53
End Sub 54
55
Sub Application_End(ByVal sender As Object, ByVal e As EventArgs) 56
' Fires when the application ends 57
End Sub 58
59
End Class 60







