PageRenderTime 24ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/e_desk/App_Code/Global.asax.vb

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