/e_desk/App_Code/Global.asax.vb
Visual Basic | 65 lines | 31 code | 21 blank | 13 comment | 0 complexity | 46795f6b8e78f300938ea9d6ff74d624 MD5 | raw file
1Imports System.Web 2Imports System.Web.SessionState 3 4 5Namespace e_desk 6 7 8Public Class [Global] 9 Inherits System.Web.HttpApplication 10 11#Region " Component Designer Generated Code " 12 13 Public Sub New() 14 MyBase.New() 15 16 'This call is required by the Component Designer. 17 InitializeComponent() 18 19 'Add any initialization after the InitializeComponent() call 20 21 End Sub 22 23 'Required by the Component Designer 24 Private components As System.ComponentModel.IContainer 25 26 'NOTE: The following procedure is required by the Component Designer 27 'It can be modified using the Component Designer. 28 'Do not modify it using the code editor. 29 <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() 30 components = New System.ComponentModel.Container() 31 End Sub 32 33#End Region 34 35 Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) 36 ' Fires when the application is started 37 End Sub 38 39 Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) 40 ' Fires when the session is started 41 End Sub 42 43 Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs) 44 ' Fires at the beginning of each request 45 End Sub 46 47 Sub Application_AuthenticateRequest(ByVal sender As Object, ByVal e As EventArgs) 48 ' Fires upon attempting to authenticate the use 49 End Sub 50 51 Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) 52 ' Fires when an error occurs 53 End Sub 54 55 Sub Session_End(ByVal sender As Object, ByVal e As EventArgs) 56 ' Fires when the session ends 57 End Sub 58 59 Sub Application_End(ByVal sender As Object, ByVal e As EventArgs) 60 ' Fires when the application ends 61 End Sub 62 63End Class 64 65End Namespace