protected void ImageButton_delete_Click(object sender, ImageClickEventArgs e) { ImageButton imageButton = sender as ImageButton; string id = imageButton.CommandArgument; Course course = new Course(); course.Id = id; CourseBLL courBLL = new CourseBLL(); courBLL.delete(course); Response.Write("<script>alert('删除成功!');location.href='showCourses.aspx';</script>"); }