Development ASP.Net Tutorial

<%@ Page %>

  Sub Page_Load(sender As Object, e As EventArgs)
    Dim a as Integer=0
    Dim myEventLog as System.Diagnostics.EventLog
    
    Try
      a=1/a
    Catch ex as Exception
      myEventLog=new System.Diagnostics.EventLog()
      myEventLog.Log="Application"
      myEventLog.Source="asp"
      myEventLog.WriteEntry(ex.ToString())
    End Try
  End Sub