Server ASP.Net


  void PageLevelErrorTest()
  {
    // Remove opening try
    int[] array = new int[9];
    for(int intCounter=0; intCounter <= 9;intCounter++)
    {
       array[intCounter] = intCounter;
       Response.Write("The value of the counter is:" + intCounter + "
");
    }
    // Remove catch and finally blocks
  }
  void Page_Error(object sender, EventArgs e)
  {
    Response.Write("Error occurred: " + Server.GetLastError().ToString());
    Server.ClearError();
  }
  void Page_Load()
  {
    PageLevelErrorTest();
  }

<%
  Response.Write("Function call completed" + "
");
%>