protected void btnDelete_Click(object sender, EventArgs e) { ExaminationCL examCL = new ExaminationCL(); examCL.id = Convert.ToInt32(Request.QueryString["examinationId"]); examinationBLL.deleteExamination(examCL.id); Response.Redirect("ManageExamination.aspx"); }