protected void gView_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            string idValue = e.CommandArgument.ToString();

            if (e.CommandName == "btnInsert")
            {
                // Hiện tại không dùng cái này
                // Thêm
                idValue = "";
                ClientScript.RegisterStartupScript(this.GetType(), "OpenWindow",
                                                   "window.open('AboutUsEdit.aspx?ID=" + idValue + "');", true);
            }
            else if (e.CommandName == "btnEdit")
            {
                // Sửa
                ClientScript.RegisterStartupScript(this.GetType(), "OpenWindow",
                                                   "window.open('AboutUsEdit.aspx?ID=" + idValue + "');", true);
            }
            else if (e.CommandName == "btnDelete")
            {
                // Xóa
                AboutUs obj = new AboutUs();
                obj.IntroID = Convert.ToInt32(idValue);

                AboutUs.Delete(obj);

                // Load lại dữ liệu
                gView_Binding();
            }
        }
 public ActionResult Delete(int id)
 {
     AboutUsTable.Delete(id);
     return(Redirect("~/Admin/AboutUs"));
 }